Merge branch 'stable' into devel
[tails.git] / .shellcheckrc
blobf4915e5446709bfc8fba2be5deb2f16ffa463d12
1 # Don't follow source'd scripts
2 disable=SC1090
3 disable=SC1091
5 # dash supports 'local'
6 disable=SC3043
8 # dash supports 'echo -n'
9 disable=SC3037
11 # Let's accept we are doing weird things with arrays & strings, for now
12 disable=SC2124
14 # We use "set -e" about everywhere
15 disable=SC2164
17 # We know that > is IO redirection, not a comparison
18 disable=SC2065