aboutsummaryrefslogtreecommitdiff
path: root/.shellcheckrc
diff options
context:
space:
mode:
Diffstat (limited to '.shellcheckrc')
-rw-r--r--.shellcheckrc4
1 files changed, 3 insertions, 1 deletions
diff --git a/.shellcheckrc b/.shellcheckrc
index c2d8dfd..7f7a9b1 100644
--- a/.shellcheckrc
+++ b/.shellcheckrc
@@ -17,5 +17,7 @@
# SC2143 - Use grep -q (stylistic)
# SC2207 - Prefer mapfile (arrays from command output)
# SC1003 - False positive on escaped single quotes in case patterns
+# SC2178 - Nameref (local -n) tripping array-vs-string heuristic
+# SC2153 - Global vars set in other sourced files look unset to shellcheck
-disable=SC2034,SC2086,SC2162,SC2016,SC2317,SC2012,SC1091,SC2329,SC2011,SC2010,SC2129,SC2001,SC2059,SC2143,SC2207,SC1003
+disable=SC2034,SC2086,SC2162,SC2016,SC2317,SC2012,SC1091,SC2329,SC2011,SC2010,SC2129,SC2001,SC2059,SC2143,SC2207,SC1003,SC2178,SC2153