We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7633529 commit f652f85Copy full SHA for f652f85
test/lint/lint-shell.sh
@@ -43,5 +43,6 @@ fi
43
# SC2206: Quote to prevent word splitting, or split robustly with mapfile or read -a.
44
# SC2207: Prefer mapfile or read -a to split command output (or quote to avoid splitting).
45
# SC2230: which is non-standard. Use builtin 'command -v' instead.
46
-shellcheck -e SC1087,SC1117,SC2001,SC2004,SC2005,SC2006,SC2016,SC2028,SC2046,SC2048,SC2066,SC2086,SC2116,SC2148,SC2162,SC2166,SC2181,SC2206,SC2207,SC2230 \
+# SC2236: Don't force -n instead of ! -z.
47
+shellcheck -e SC1087,SC1117,SC2001,SC2004,SC2005,SC2006,SC2016,SC2028,SC2046,SC2048,SC2066,SC2086,SC2116,SC2148,SC2162,SC2166,SC2181,SC2206,SC2207,SC2230,SC2236 \
48
$(git ls-files -- "*.sh" | grep -vE 'src/(secp256k1|univalue)/')
0 commit comments