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