-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy path.shellcheckrc
More file actions
32 lines (24 loc) · 785 Bytes
/
.shellcheckrc
File metadata and controls
32 lines (24 loc) · 785 Bytes
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
# AntiHunter ShellCheck Configuration
# Static analysis configuration for shell scripts
# Disable specific warnings that are acceptable for this project
disable=SC2034 # Variable appears unused (common in build scripts)
disable=SC2086 # Double quote to prevent globbing (intentional in some cases)
disable=SC1091 # File not found when sourcing (may be generated)
# Enable all optional checks
enable=all
# Specify shell dialect
shell=bash
# Source path for libraries and includes
source-path=SCRIPTDIR
# External sources to check
external-sources=true
# Check sourced files
check-sourced=true
# Exclude specific directories
exclude-dir=.git
exclude-dir=.pio
exclude-dir=.vscode
exclude-dir=lib
exclude-dir=include
# Severity level: error, warning, info, style
severity=style