-
Notifications
You must be signed in to change notification settings - Fork 7
/
.mega-linter.yml
32 lines (31 loc) · 1.03 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
30
31
32
# Configuration file for MegaLinter
# See all available variables at https://megalinter.github.io/configuration/ and in linters documentation
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:
[
#YAML_YAMLLINT,
#YAML_PRETTIER,
#SQL_SQL_LINT,
MARKDOWN_MARKDOWN_LINK_CHECK,
ENV_DOTENV_LINTER,
CREDENTIALS_SECRETLINT,
COPYPASTE_JSCPD,
]
#DISABLE:
# - HTML
# - COPYPASTE # Uncomment to disable checks of excessive copy-pastes
# - SPELL # Uncomment to disable checks of spelling mistakes
SHOW_ELAPSED_TIME: true
FILEIO_REPORTER: true
FILTER_REGEX_EXCLUDE: tsconfig.json
EXCLUDED_DIRECTORIES:
[
.obsidian,
plugins/optomitron-real-time-decision-support-plugin/analysis-data,
plugins/optomitron-real-time-decision-support-plugin/analysis-data/*,
.git,
.github,
.vscode,
]
# DISABLE_ERRORS: true # Uncomment if you want MegaLinter to detect errors but not block CI to pass