Spaces:
Runtime error
Runtime error
alamin655
commited on
Commit
•
6e843f0
1
Parent(s):
fab6b89
Create .mega-linter.yml
Browse files- .mega-linter.yml +25 -0
.mega-linter.yml
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Configuration file for MegaLinter
|
2 |
+
# See all available variables at https://megalinter.io/configuration/ and in linters documentation
|
3 |
+
|
4 |
+
APPLY_FIXES: all # all, none, or list of linter keys
|
5 |
+
# ENABLE: # If you use ENABLE variable, all other languages/formats/tooling-formats will be disabled by default
|
6 |
+
ENABLE_LINTERS: # If you use ENABLE_LINTERS variable, all other linters will be disabled by default
|
7 |
+
- LUA_LUACHECK
|
8 |
+
- RUST_CLIPPY
|
9 |
+
- JAVASCRIPT_ES
|
10 |
+
- CSS_STYLELINT
|
11 |
+
- MARKDOWN_MARKDOWNLINT
|
12 |
+
- YAML_YAMLLINT
|
13 |
+
- JSON_ESLINT_PLUGIN_JSONC
|
14 |
+
- HTML_DJLINT
|
15 |
+
- ACTION_ACTIONLINT
|
16 |
+
- DOCKERFILE_HADOLINT
|
17 |
+
- SPELL_CSPELL
|
18 |
+
- COPYPASTE_JSCPD
|
19 |
+
- REPOSITORY_TRIVY
|
20 |
+
# DISABLE:
|
21 |
+
# - COPYPASTE # Uncomment to disable checks of excessive copy-pastes
|
22 |
+
# - SPELL # Uncomment to disable checks of spelling mistakes
|
23 |
+
SHOW_ELAPSED_TIME: true
|
24 |
+
FILEIO_REPORTER: true
|
25 |
+
# DISABLE_ERRORS: true # Uncomment if you want MegaLinter to detect errors but not block CI to pass
|