-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.shellcheckrc
More file actions
15 lines (12 loc) · 783 Bytes
/
.shellcheckrc
File metadata and controls
15 lines (12 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
source-path=scripts
external-sources=true
enable=all
# SC1091 - Not following: FILE: does not exist (No such file or directory) - https://github.com/koalaman/shellcheck/wiki/SC1091
# - used for sourcing function files throughout the codebase
# SC2034 - VAR appears unused - https://github.com/koalaman/shellcheck/wiki/SC2034
# - used for declaring desc and deprecated function variables
# SC2064 - Use single quotes, otherwise this expands now rather than when signalled. - https://github.com/koalaman/shellcheck/wiki/SC2064
# - used for traps
# SC2155 - Declare and assign separately to avoid masking return values - https://github.com/koalaman/shellcheck/wiki/SC2155
# - used throughout the codebase
disable=SC1091,SC2034,SC2046,SC2064,SC2120,SC2155