diff options
Diffstat (limited to '.shellcheckrc')
-rw-r--r-- | .shellcheckrc | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/.shellcheckrc b/.shellcheckrc index ce5c883..26c5c47 100644 --- a/.shellcheckrc +++ b/.shellcheckrc @@ -1,11 +1,3 @@ -# SC2039: In POSIX sh, 'local' is undefined. -# https://github.com/koalaman/shellcheck/wiki/SC2039 -disable=SC2039 - -# SC2166: Prefer [ p ] || [ q ] as [ p -o q ] is not well defined. -# https://github.com/koalaman/shellcheck/wiki/SC2166 -disable=SC2166 - # SC2154: Variable is referenced but not assigned # https://github.com/koalaman/shellcheck/wiki/SC2154 disable=SC2154 @@ -27,8 +19,3 @@ disable=SC3043 # https://github.com/koalaman/shellcheck/wiki/SC3013 # ... but dash supports it disable=SC3013 - -# SC3045: In POSIX sh, read -p is undefined. -# https://github.com/koalaman/shellcheck/wiki/SC3045 -# ... but dash supports it -disable=SC3045 |