-
Notifications
You must be signed in to change notification settings - Fork 39
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
KaoImin
committed
Dec 21, 2023
1 parent
17bf12f
commit 929dd7d
Showing
1 changed file
with
53 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# Configuration file for MegaLinter | ||
# See all available variables at https://megalinter.io/configuration/ and in linters documentation | ||
|
||
APPLY_FIXES: all | ||
DISABLE_LINTERS: | ||
- JAVASCRIPT_PRETTIER | ||
- JAVASCRIPT_STANDARD | ||
- JSON_PRETTIER | ||
- REPOSITORY_GITLEAKS | ||
- REPOSITORY_KICS | ||
- RUST_CLIPPY | ||
- SPELL_PROSELINT | ||
- SPELL_MISSPELL | ||
- SPELL_VALE | ||
DISABLE_ERRORS_LINTERS: | ||
- PYTHON_BANDIT | ||
- PYTHON_PYRIGHT | ||
- REPOSITORY_DEVSKIM | ||
- REPOSITORY_GRYPE | ||
- REPOSITORY_SEMGREP | ||
- REPOSITORY_TRUFFLEHOG | ||
PRINT_ALL_FILES: false | ||
FILTER_REGEX_EXCLUDE: '(\.automation/test|\.automation/generated|\.venv|\.github/workflows|docs/javascripts|docs/overrides|docs/json-schemas|flavors|clj-kondo|TEMPLATES)' | ||
JSON_JSONLINT_FILTER_REGEX_EXCLUDE: '(\.vscode/)' | ||
YAML_YAMLLINT_FILTER_REGEX_EXCLUDE: '(templates/\.mega-linter\.yml)' | ||
YAML_PRETTIER_FILTER_REGEX_EXCLUDE: '(templates/\.mega-linter\.yml|mkdocs\.yml)' | ||
YAML_V8R_FILTER_REGEX_EXCLUDE: '(descriptors|templates/\.mega-linter\.yml|\.codecov\.yml)' | ||
BASH_FILTER_REGEX_EXCLUDE: "(lib)" | ||
MARKDOWN_FILTER_REGEX_EXCLUDE: '(license\.md|docs/licenses)' | ||
MARKDOWN_MARKDOWN_LINK_CHECK_DISABLE_ERRORS: true | ||
SPELL_VALE_FILE_EXTENSIONS: | ||
- .md | ||
SPELL_FILTER_REGEX_EXCLUDE: (valestyles|\.github|docs/licenses) | ||
DOCKERFILE_HADOLINT_ARGUMENTS: "--ignore DL3003 --ignore DL3007 --ignore DL3013 --ignore DL3016 --ignore DL3018 --ignore DL3028 --ignore DL3059 --ignore DL4001 --ignore DL4006 --ignore SC2015 --ignore SC2016 --ignore SC2039 --ignore SC2086 --ignore SC1091 --ignore SC3046" | ||
REPOSITORY_TRIVY_ARGUMENTS: | ||
- "--skip-dirs" | ||
- ".automation/test" | ||
- "--skip-dirs" | ||
- ".venv" | ||
SHOW_ELAPSED_TIME: true | ||
FLAVOR_SUGGESTIONS: false | ||
EMAIL_REPORTER: false | ||
FILEIO_REPORTER: false | ||
JSON_REPORTER: true | ||
GITHUB_STATUS_REPORTER: false | ||
PLUGINS: | ||
- https://raw.githubusercontent.com/oxsecurity/megalinter/main/.automation/test/mega-linter-plugin-test/test.megalinter-descriptor.yml | ||
PRE_COMMANDS: | ||
- command: echo "This is MegaLinter PRE_COMMAND on own MegaLinter ! :)" | ||
cwd: "root" | ||
POST_COMMANDS: | ||
- command: echo "This is MegaLinter POST_COMMAND on own MegaLinter ! :)" | ||
cwd: "workspace" |