-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.mega-linter.yml
More file actions
52 lines (41 loc) · 1.6 KB
/
Copy path.mega-linter.yml
File metadata and controls
52 lines (41 loc) · 1.6 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# 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:
# DISABLE:
# - COPYPASTE # Uncomment to disable checks of excessive copy-pastes
# - SPELL # Uncomment to disable checks of spelling mistakes
SHOW_ELAPSED_TIME: true
FILEIO_REPORTER: false
FLAVOR_SUGGESTIONS: false
DISABLE:
- COPYPASTE
- CPP
- JAVASCRIPT
- PYTHON
- SPELL
DISABLE_LINTERS:
- REPOSITORY_GITLEAKS
- REPOSITORY_KICS
# osv-scanner scans dependency manifests (package.json, Cargo.toml, etc.).
# This repo has none, so the scanner exits with "No package sources found"
# and fails the run on every commit. Nothing for it to do here.
- REPOSITORY_OSV_SCANNER
# zizmor's unpinned-uses audit requires every action ref to be a SHA hash.
# Standard upstream actions (actions/checkout@v4, etc.) are used here and
# pinning 59+ refs across all workflows is impractical for a personal dotfiles
# repo. Disable the linter rather than carry dead SHA maintenance burden.
- ACTION_ZIZMOR
BASH_SHELLCHECK_ARGUMENTS: --exclude=SC2317,SC2086,SC2155,SC2030,SC2031,SC2181
BASH_EXEC_FILTER_REGEX_EXCLUDE: >-
(^|/)(lib/.*\.sh|home/dot_local/lib/dots/.*\.sh|playground/config/\.bashrc)$
# Uncomment if you want MegaLinter to detect errors but not block CI to pass
# DISABLE_ERRORS: true