-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.shellcheckrc
More file actions
35 lines (27 loc) · 1.12 KB
/
.shellcheckrc
File metadata and controls
35 lines (27 loc) · 1.12 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
# SC1091: Can't follow non-constant source
# https://github.com/koalaman/shellcheck/wiki/SC1090
disable=SC1090
# SC1091: Not following: (error message here)
# https://github.com/koalaman/shellcheck/wiki/SC1091
disable=SC1091
# SC2046: Quote this to prevent word splitting.
# https://github.com/koalaman/shellcheck/wiki/SC2046
disable=SC2046
# SC2059: Don't use variables in the printf format string.
# https://github.com/koalaman/shellcheck/wiki/SC2059
disable=SC2059
# SC2068: Double quote array expansions to avoid re-splitting elements.
# https://github.com/koalaman/shellcheck/wiki/SC2068
disable=SC2068
# SC2086: Double quote to prevent globbing and word splitting.
# https://github.com/koalaman/shellcheck/wiki/SC2086
disable=SC2086
# SC2153: Possible Misspelling: MYVARIABLE may not be assigned. Did you mean MY_VARIABLE?
# https://github.com/koalaman/shellcheck/wiki/SC2153
disable=SC2153
# SC2155: Declare and assign separately to avoid masking return values
# https://github.com/koalaman/shellcheck/wiki/SC2155
disable=SC2155
# SC2236: Use -n instead of ! -z.
# https://github.com/koalaman/shellcheck/wiki/SC2236
disable=SC2236