forked from Boeing/config-file-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.mega-linter.yml
More file actions
30 lines (27 loc) · 1.13 KB
/
Copy path.mega-linter.yml
File metadata and controls
30 lines (27 loc) · 1.13 KB
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
# Configuration file for MegaLinter
# See all available variables at https://megalinter.io/configuration/ and in linters documentation
---
EXCLUDED_DIRECTORIES: []
# Disabled certain linters due to duplication and or redundancy.
DISABLE_LINTERS:
# https://megalinter.io/latest/descriptors/repository_kics/
- REPOSITORY_KICS
# already enabled as a dedicated linter for this repo
- GO_GOLANGCI_LINT
# another linter, https://megalinter.io/latest/descriptors/go_revive/
- GO_REVIVE
# Another vulnerability scanner, https://megalinter.io/latest/descriptors/repository_grype/
- REPOSITORY_GRYPE
# Spell checker, https://megalinter.io/latest/descriptors/spell_lychee/
- SPELL_LYCHEE
DISABLE_ERRORS_LINTERS:
# To prevent unnecessary spelling errors (will spit out warnings)
- SPELL_CSPELL
# copypaste checker (JSCPD), can be added in a separate PR as this will need test refactor
- COPYPASTE_JSCPD
FILTER_REGEX_EXCLUDE: "(test/)"
JSON_JSONLINT_FILTER_REGEX_EXCLUDE: "(test/)"
YAML_YAMLLINT_FILTER_REGEX_EXCLUDE: "(test/)"
YAML_PRETTIER_FILTER_REGEX_EXCLUDE: "(test/)"
SHOW_ELAPSED_TIME: true
REPORT_OUTPUT_FOLDER: megalinter-reports