aboutsummaryrefslogtreecommitdiff
path: root/test/lint
diff options
context:
space:
mode:
authorHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2019-11-03 22:32:50 +0200
committerHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2019-11-27 19:27:56 +0200
commit17f81e96486780df5d464487975ecb11b278ec8d (patch)
tree96369d9a631c1996c0c794091120fd1fdf54bb92 /test/lint
parent61bb21b4181c06b5956b5d6f2f7831e56e4f1cf6 (diff)
downloadbitcoin-17f81e96486780df5d464487975ecb11b278ec8d.tar.xz
script: Enable SC2001 rule for Gitian scripts
Diffstat (limited to 'test/lint')
-rwxr-xr-xtest/lint/lint-shell.sh1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/lint/lint-shell.sh b/test/lint/lint-shell.sh
index ce371455ed..63624e3ae0 100755
--- a/test/lint/lint-shell.sh
+++ b/test/lint/lint-shell.sh
@@ -23,7 +23,6 @@ disabled=(
SC2162 # read without -r will mangle backslashes.
)
disabled_gitian=(
- SC2001 # See if you can use ${variable//search/replace} instead.
SC2094 # Make sure not to read and write the same file in the same pipeline.
SC2129 # Consider using { cmd1; cmd2; } >> file instead of individual redirects.
SC2230 # which is non-standard. Use builtin 'command -v' instead.