-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(megalinter): add root level config
- Loading branch information
1 parent
761388a
commit 813954d
Showing
4 changed files
with
26 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,3 +17,4 @@ bin/ | |
vendor/ | ||
.vscode | ||
.idea | ||
megalinter-reports/ |
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,22 @@ | ||
# Configuration file for MegaLinter | ||
# See all available variables at https://megalinter.io/configuration/ and in linters documentation | ||
|
||
EXCLUDED_DIRECTORIES: | ||
- test/fixtures/ | ||
|
||
DISABLE_LINTERS: | ||
- REPOSITORY_KICS | ||
- GO_GOLANGCI_LINT | ||
- GO_REVIVE | ||
- REPOSITORY_GRYPE | ||
|
||
DISABLE_ERRORS_LINTERS: | ||
- SPELL_CSPELL | ||
- COPYPASTE_JSCPD | ||
|
||
FILTER_REGEX_EXCLUDE: '(test/)' | ||
JSON_JSONLINT_FILTER_REGEX_EXCLUDE: '(test/)' | ||
YAML_YAMLLINT_FILTER_REGEX_EXCLUDE: '(test/)' | ||
YAML_PRETTIER_FILTER_REGEX_EXCLUDE: '(test/)' | ||
SHOW_ELAPSED_TIME: true | ||
REPORT_OUTPUT_FOLDER: megalinter-reports |
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