aboutsummaryrefslogtreecommitdiff
path: root/test/lint/lint-shell.sh
diff options
context:
space:
mode:
authorHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2019-11-03 21:39:19 +0200
committerHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2019-11-06 15:11:54 +0200
commit577682d9e8cc07a8db9459a47b01f6c18decba7c (patch)
tree46b3902797ecc2047c5573bb27e0aef39d55ae13 /test/lint/lint-shell.sh
parent14aded46df289e2d05f9fd79c81f2e8ed68a1487 (diff)
downloadbitcoin-577682d9e8cc07a8db9459a47b01f6c18decba7c.tar.xz
script: Enable SC2006 rule for Gitian scripts
Diffstat (limited to 'test/lint/lint-shell.sh')
-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 c70525d9a9..0e1a7bc4f0 100755
--- a/test/lint/lint-shell.sh
+++ b/test/lint/lint-shell.sh
@@ -24,7 +24,6 @@ disabled=(
)
disabled_gitian=(
SC2001 # See if you can use ${variable//search/replace} instead.
- SC2006 # Use $(...) notation instead of legacy backticked `...`.
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.
SC2155 # Declare and assign separately to avoid masking return values.