diff options
Diffstat (limited to '.shellcheckrc')
-rw-r--r-- | .shellcheckrc | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/.shellcheckrc b/.shellcheckrc index cf5ed4b..3a3d939 100644 --- a/.shellcheckrc +++ b/.shellcheckrc @@ -1,16 +1,14 @@ shell=bash +enable=deprecate-which +enable=require-double-brackets disable=SC1090 # not really fixable usually (ever?) disable=SC2034 # for localizing variables set in called functions disable=SC2128 # intentional style choice disable=SC2206 # suggested alternatives fail in posix mode or use temp files +disable=SC2209 # interferes with our `set` (literal) vs empty booleans disable=SC2207 # suggested alternatives fail in posix mode or use temp files # These disables are to be investigated and decided -disable=SC1004 -disable=SC2015 disable=SC2016 -disable=SC2086 disable=SC2155 -disable=SC2162 -disable=SC2231 |