From 1be9fa9aeb2e3a61d50fa23fabdbd4443b39b7af Mon Sep 17 00:00:00 2001 From: practicalswift Date: Wed, 16 Jan 2019 15:28:28 +0100 Subject: [PATCH] Remove no longer needed shellcheck suppressions --- test/lint/lint-shell.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/lint/lint-shell.sh b/test/lint/lint-shell.sh index fa94f82ff..6f5e6546c 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 $?.