-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
28 changed files
with
843 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
version: '2' | ||
version: "2" | ||
|
||
services: | ||
emissary-worker-1: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
MegaLinter can help you to define the same linter configuration locally | ||
|
||
INSTRUCTIONS | ||
|
||
- Copy the content of IDE-config folder at the root of your repository | ||
- if you are using Visual Studio Code, just reopen your project after the copy, and you will be prompted to install recommended extensions | ||
- If not, you can install extensions manually using the following links. | ||
|
||
IDE EXTENSIONS APPLICABLE TO YOUR PROJECT | ||
|
||
prettier (YAML) | ||
- atom: | ||
- prettier-atom: https://github.com/prettier/prettier-atom | ||
- atom-mprettier: https://github.com/t9md/atom-mprettier | ||
- atom-miniprettier: https://github.com/duailibe/atom-miniprettier | ||
- emacs: | ||
- prettier-emacs: https://github.com/prettier/prettier-emacs | ||
- prettier.el: https://github.com/jscheid/prettier.el | ||
- apheleia: https://github.com/raxod502/apheleia | ||
- idea: | ||
- Prettier: https://plugins.jetbrains.com/plugin/10456-prettier | ||
- sublime: | ||
- JsPrettier: https://packagecontrol.io/packages/JsPrettier | ||
- vim: | ||
- vim-prettier: https://github.com/prettier/vim-prettier | ||
- visual_studio: | ||
- JavaScriptPrettier: https://github.com/madskristensen/JavaScriptPrettier | ||
- vscode: | ||
- prettier-vscode: https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode | ||
|
||
v8r (YAML) | ||
- eclipse: | ||
- native support: https://www.eclipse.org/ | ||
- idea: | ||
- native support: https://www.jetbrains.com/products/#type=ide | ||
- vim: | ||
- vison: https://github.com/Quramy/vison | ||
- vscode: | ||
- native support: https://code.visualstudio.com/ | ||
|
||
yamllint (YAML) | ||
- emacs: | ||
- flycheck: https://github.com/krzysztof-magosa/flycheck-yamllint | ||
- vim: | ||
- ale: https://github.com/w0rp/ale |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
########################################### | ||
# These are the rules used for # | ||
# linting all the yaml files in the stack # | ||
# NOTE: # | ||
# You can disable line with: # | ||
# # yamllint disable-line # | ||
########################################### | ||
extends: default | ||
rules: | ||
new-lines: | ||
level: warning | ||
type: unix | ||
line-length: | ||
max: 500 | ||
comments: | ||
min-spaces-from-content: 1 # Used to follow prettier standard: https://github.com/prettier/prettier/pull/10926 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
Results of yamllint linter (version 1.32.0) | ||
See documentation on https://megalinter.io/7.4.0/descriptors/yaml_yamllint/ | ||
----------------------------------------------- | ||
|
||
❌ [ERROR] for workspace /tmp/lint | ||
Linter raw log: | ||
.github/workflows/cherrypick.yml | ||
4:1 warning truthy value should be one of [false, true] (truthy) | ||
|
||
.github/workflows/codeql-analysis.yml | ||
50:9 warning comment not indented like content (comments-indentation) | ||
|
||
.github/workflows/create-patch-branch.yml | ||
1:1 warning missing document start "---" (document-start) | ||
3:1 warning truthy value should be one of [false, true] (truthy) | ||
79:61 error no new line character at the end of file (new-line-at-end-of-file) | ||
|
||
.github/workflows/maven-ci.yml | ||
1:1 warning missing document start "---" (document-start) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Results of prettier linter (version 3.0.3) | ||
See documentation on https://megalinter.io/7.4.0/descriptors/yaml_prettier/ | ||
----------------------------------------------- | ||
|
||
✅ [SUCCESS] for workspace /tmp/lint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Results of v8r linter (version 2.0.0) | ||
See documentation on https://megalinter.io/7.4.0/descriptors/yaml_v8r/ | ||
----------------------------------------------- | ||
|
||
✅ [SUCCESS] for workspace /tmp/lint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Results of yamllint linter (version 1.32.0) | ||
See documentation on https://megalinter.io/7.4.0/descriptors/yaml_yamllint/ | ||
----------------------------------------------- | ||
|
||
✅ [SUCCESS] for workspace /tmp/lint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
Results of prettier linter (version 3.0.3) | ||
See documentation on https://megalinter.io/7.4.0/descriptors/yaml_prettier/ | ||
----------------------------------------------- | ||
|
||
❌ [ERROR] for workspace /tmp/lint | ||
Linter raw log: | ||
Checking formatting... | ||
[warn] .github/workflows/codeql-analysis.yml | ||
[warn] .github/workflows/create-patch-branch.yml | ||
[warn] .github/workflows/dependency-review.yml | ||
[warn] .github/workflows/maven-ci.yml | ||
[warn] .github/workflows/maven-publish.yml | ||
[warn] .github/workflows/maven-release.yml | ||
[warn] .github/workflows/maven-version.yml | ||
[warn] contrib/docker/docker-compose.yml | ||
[warn] contrib/elasticsearch/filebeat.agents.docker.yml | ||
[warn] Code style issues found in 9 files. Run Prettier to fix. | ||
|
Oops, something went wrong.