-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy path.shellcheckrc
More file actions
33 lines (23 loc) · 778 Bytes
/
.shellcheckrc
File metadata and controls
33 lines (23 loc) · 778 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
33
# Disable warnings about not being able to follow sourced files
disable=SC1090
disable=SC1091
# Disable warnings about missing shebangs
disable=SC2148
# Disable warnings about using source instead of .
disable=SC1091
# Disable warnings about using local variables in functions
disable=SC2039
# Disable warnings about using $() instead of backticks
disable=SC2006
# Disable warnings about using [ instead of [[
disable=SC2039
# Disable warnings about using == in [ ] (use = instead)
disable=SC2039
# Disable warnings about using $"" for locale translation
disable=SC2039
# Disable warnings about using cd with a variable
disable=SC2164
# Disable warnings about using echo with -e
disable=SC2039
# Disable warnings about using command -v instead of which
disable=SC2230