-
Notifications
You must be signed in to change notification settings - Fork 1
/
.mega-linter.yml
29 lines (28 loc) · 1.21 KB
/
.mega-linter.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
---
# Configuration file for MegaLinter
# See all available variables at https://megalinter.io/latest/config-file/ and in linters documentation
VALIDATE_ALL_CODEBASE: true
# APPLY_FIXES: all # all, none, or list of linter keys
# ENABLE: # If you use ENABLE variable, all other languages/formats/tooling-formats will be disabled by default
# ENABLE_LINTERS: # If you use ENABLE_LINTERS variable, all other linters will be disabled by default
# - REPOSITORY_CHECKOV
# DISABLE:
# - COPYPASTE # Comment to enable checks of excessive copy-pastes
# - SPELL # Uncomment to disable checks of spelling mistakes
SHOW_ELAPSED_TIME: true
FILEIO_REPORTER: false
# DISABLE_ERRORS: true # Uncomment if you want MegaLinter to detect errors but not block CI to pass
DISABLE_ERRORS_LINTERS:
- REPOSITORY_DEVSKIM # issues with different UID as megalinter is running as root
# FILTER_REGEX_EXCLUDE: '(bru)' # files in .gitignore are already filtered by default
LOG_LEVEL: DEBUG # INFO # DEBUG
SPELL_LYCHEE_FILTER_REGEX_EXCLUDE: (package-lock\.json)
REPOSITORY_CHECKOV_ARGUMENTS:
- "--skip-path"
- "coverage"
- "--skip-path"
- "megalinter-reports"
REPOSITORY_DEVSKIM_ARGUMENTS:
- "--ignore-globs"
- "**/.git/**"
- "--skip-git-ignored-files"