-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path.shellcheckrc
More file actions
32 lines (23 loc) · 870 Bytes
/
.shellcheckrc
File metadata and controls
32 lines (23 loc) · 870 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
# ShellCheck configuration for phpvm
# See https://github.com/koalaman/shellcheck/wiki
# Disable specific checks that are intentional or not applicable
# SC2155: Declare and assign separately to avoid masking return values
# We use this pattern intentionally for readability in some cases
disable=SC2155
# SC1091: Not following: file not included in repository
# We source files that may not exist yet
disable=SC1091
# SC2317: Command appears to be unreachable (in functions)
# False positives with our function structure
disable=SC2317
# SC2034: Variable appears unused
# Some variables are used in eval or sourced contexts
disable=SC2034
# Limit output to warnings/errors to avoid noise from info/style checks
severity=warning
# Set shell to bash
shell=bash
# External sources that we know about
source-path=SCRIPTDIR
# Exclude patterns
exclude=SC1090,SC1091