diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 01:03:18 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 01:03:18 +0000 |
commit | f2621414ee5f2f601424c22f00e207903e3b6104 (patch) | |
tree | 56a856dafd1ca684bb23263cacaa723ee4f404fc /.shellcheckrc | |
parent | Adding debian version 1:2.11-8. (diff) | |
download | bash-completion-f2621414ee5f2f601424c22f00e207903e3b6104.tar.xz bash-completion-f2621414ee5f2f601424c22f00e207903e3b6104.zip |
Merging upstream version 1:2.12.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
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 |