]> git.ipfire.org Git - thirdparty/dracut.git/blame - .shellcheckrc
fix(multipath): remove dependency on multipathd.socket
[thirdparty/dracut.git] / .shellcheckrc
CommitLineData
eddca442 1# SC2039: In POSIX sh, 'local' is undefined.
90c679e7 2# https://github.com/koalaman/shellcheck/wiki/SC2039
eddca442
HH
3disable=SC2039
4
5# SC2166: Prefer [ p ] || [ q ] as [ p -o q ] is not well defined.
90c679e7 6# https://github.com/koalaman/shellcheck/wiki/SC2166
eddca442 7disable=SC2166
90c679e7
HH
8
9# SC2154: Variable is referenced but not assigned
10# https://github.com/koalaman/shellcheck/wiki/SC2154
11disable=SC2154
12
13# SC1091: Not following <file>
14# https://github.com/koalaman/shellcheck/wiki/SC1091
15disable=SC1091
16
17# SC2174: When used with -p, -m only applies to the deepest directory.
18# https://github.com/koalaman/shellcheck/wiki/SC2174
19disable=SC2174
909961d0
HH
20
21# SC3043: In POSIX sh, 'local' is undefined.
22# https://github.com/koalaman/shellcheck/wiki/SC3043
23# ... but dash supports it
24disable=SC3043
25
26# SC3013: In POSIX sh, -ef is undefined.
27# https://github.com/koalaman/shellcheck/wiki/SC3013
28# ... but dash supports it
29disable=SC3013
30
31# SC3045: In POSIX sh, read -p is undefined.
32# https://github.com/koalaman/shellcheck/wiki/SC3045
33# ... but dash supports it
34disable=SC3045