aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorpracticalswift <practicalswift@users.noreply.github.com>2019-01-16 15:28:28 +0100
committerpracticalswift <practicalswift@users.noreply.github.com>2019-01-16 15:47:56 +0100
commita5175417942bb93188caef12a734f28accc2b6cb (patch)
tree0e2466f11f98168586c44f1f41441a61aeeaa6f4 /test
parent0b7196ecad2e7c7dad7ed67bbffdee5d9017b622 (diff)
downloadbitcoin-a5175417942bb93188caef12a734f28accc2b6cb.tar.xz
Remove no longer needed shellcheck suppressions
Diffstat (limited to 'test')
-rwxr-xr-xtest/lint/lint-shell.sh2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/lint/lint-shell.sh b/test/lint/lint-shell.sh
index fa94f82ffd..6f5e6546c5 100755
--- a/test/lint/lint-shell.sh
+++ b/test/lint/lint-shell.sh
@@ -24,7 +24,6 @@ fi
# Disabled warnings:
disabled=(
SC1087 # Use braces when expanding arrays, e.g. ${array[idx]} (or ${var}[.. to quiet).
- SC1117 # Backslash is literal in "\.". Prefer explicit escaping: "\\.".
SC2001 # See if you can use ${variable//search/replace} instead.
SC2004 # $/${} is unnecessary on arithmetic variables.
SC2005 # Useless echo? Instead of 'echo $(cmd)', just use 'cmd'.
@@ -36,7 +35,6 @@ disabled=(
SC2066 # Since you double quoted this, it will not word split, and the loop will only run once.
SC2086 # Double quote to prevent globbing and word splitting.
SC2116 # Useless echo? Instead of 'cmd $(echo foo)', just use 'cmd foo'.
- SC2148 # Tips depend on target shell and yours is unknown. Add a shebang.
SC2162 # read without -r will mangle backslashes.
SC2166 # Prefer [ p ] {&&,||} [ q ] as [ p -{a,o} q ] is not well defined.
SC2181 # Check exit code directly with e.g. 'if mycmd;', not indirectly with $?.