From 782f587703958a7061660d4626aafd55cfa10c3b Mon Sep 17 00:00:00 2001 From: Maciej Wawryk Date: Thu, 10 Oct 2019 10:04:29 +0200 Subject: [PATCH] test: Shellcheck - include check SC1003 Remove from shellcheck excluded SC1003: Want to escape a single quote? echo 'This is how it'\''s done'. This warning is not actually present in any of spdk/spdk scripts. Signed-off-by: Maciej Wawryk Change-Id: Ib5175941178e4d1b46c3835a98d90d6dd427a035 Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/470912 Tested-by: SPDK CI Jenkins Reviewed-by: Tomasz Zawadzki Reviewed-by: Jim Harris Reviewed-by: Ben Walker Reviewed-by: Karol Latecki --- scripts/check_format.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/check_format.sh b/scripts/check_format.sh index ffd0d6fef..4f509207a 100755 --- a/scripts/check_format.sh +++ b/scripts/check_format.sh @@ -240,7 +240,7 @@ if hash shellcheck 2>/dev/null; then # go to: https://trello.com/c/29Z90j1W # Error descriptions can also be found at: https://github.com/koalaman/shellcheck/wiki # This SHCK_EXCLUDE list is out "to do" and we work to fix all of this errors. - SHCK_EXCLUDE="SC1001,SC1003,\ + SHCK_EXCLUDE="SC1001,\ SC1083,SC2002,SC2004,\ SC2010,SC2012,SC2013,SC2016,\ SC2034,SC2045,SC2046,\