-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.mega-linter.yaml
47 lines (38 loc) · 1.05 KB
/
.mega-linter.yaml
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
---
# Configuration file for MegaLinter
#
# See all available variables at https://megalinter.io/latest/config-file/ and in
# linters documentation
# all, none, or list of linter keys
APPLY_FIXES: all
# If you use ENABLE variable, all other languages/formats/tooling-formats will
# be disabled by default
# ENABLE:
# If you use ENABLE_LINTERS variable, all other linters will be disabled by default
ENABLE_LINTERS:
- ACTION_ACTIONLINT
- RUST_CLIPPY
- MARKDOWN_MARKDOWNLINT
- MARKDOWN_MARKDOWN_LINK_CHECK
- MARKDOWN_MARKDOWN_TABLE_FORMATTER
- YAML_YAMLLINT
- YAML_PRETTIER
- JSON_JSONLINT
- JSON_PRETTIER
# DISABLE:
SHOW_ELAPSED_TIME: true
FILEIO_REPORTER: false
# Uncomment if you want MegaLinter to detect errors but not block CI to pass
# DISABLE_ERRORS: true
GITHUB_COMMENT_REPORTER: true
GITHUB_STATUS_REPORTER: true
VALIDATE_ALL_CODEBASE: true
OUTPUT_DETAIL: detailed
# Linter Configuration
MARKDOWN_MARKDOWNLINT_CONFIG_FILE: .markdownlint.json
RUST_CLIPPY_ARGUMENTS:
- "--workspace"
- "--all-targets"
- "--"
- "-D"
- "warnings"