summaryrefslogtreecommitdiff
path: root/.shellcheckrc
diff options
context:
space:
mode:
authorGabriel F. T. Gomes <gabriel@inconstante.net.br>2020-08-03 18:43:13 -0300
committerGabriel F. T. Gomes <gabriel@inconstante.net.br>2020-08-03 18:43:13 -0300
commit95623d39d6029ba78ec96ad5ea08e9ac12629b91 (patch)
treeea0fe36eb5e6f40e0a1f765d44c4b0c0b2bfb089 /.shellcheckrc
parent019f3cc463db63abc6460f97deb488deec43840b (diff)
downloadbash-completion-95623d39d6029ba78ec96ad5ea08e9ac12629b91.tar.gz
New upstream version 2.11upstream/2.11upstream
Diffstat (limited to '.shellcheckrc')
-rw-r--r--.shellcheckrc14
1 files changed, 13 insertions, 1 deletions
diff --git a/.shellcheckrc b/.shellcheckrc
index 9bec7145..cf5ed4bc 100644
--- a/.shellcheckrc
+++ b/.shellcheckrc
@@ -1,4 +1,16 @@
shell=bash
disable=SC1090 # not really fixable usually (ever?)
+disable=SC2034 # for localizing variables set in called functions
disable=SC2128 # intentional style choice
-disable=SC2155 # TODO
+disable=SC2206 # suggested alternatives fail in posix mode or use temp files
+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