From fe9bc4eb4703cf916f4a40b88344f9d573f9538b Mon Sep 17 00:00:00 2001 From: Maciej Wawryk Date: Fri, 30 Aug 2019 11:51:02 +0200 Subject: [PATCH] test: Shellcheck - include check "word is outside of quotes" Remove from shellcheck excluded SC2026: This word is outside of quotes. Did you intend to 'nest '"'single quotes'"' instead' Signed-off-by: Maciej Wawryk Change-Id: Ic71c464de9dccebe9ead9c47b5cdb15d8fcc025b Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/466902 Reviewed-by: Paul Luse Reviewed-by: Karol Latecki Reviewed-by: Jim Harris Reviewed-by: Ben Walker Tested-by: SPDK CI Jenkins --- 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 bb88c99f1..ff57301b5 100755 --- a/scripts/check_format.sh +++ b/scripts/check_format.sh @@ -241,7 +241,7 @@ if hash shellcheck 2>/dev/null; then # Error descriptions can also be found at: https://github.com/koalaman/shellcheck/wiki SHCK_EXCLUDE="SC1001,SC1003,SC1004,SC1010,\ SC1083,SC1090,SC1091,SC1113,SC2001,SC2002,SC2003,SC2004,SC2005,\ -SC2009,SC2010,SC2012,SC2013,SC2015,SC2016,SC2018,SC2019,SC2022,SC2026,\ +SC2009,SC2010,SC2012,SC2013,SC2015,SC2016,SC2018,SC2019,SC2022,\ SC2027,SC2030,SC2031,SC2034,SC2035,SC2039,SC2043,SC2044,SC2045,SC2046,SC2048,\ SC2059,SC2068,SC2074,SC2086,SC2088,SC2089,SC2090,SC2091,SC2094,\ SC2097,SC2098,SC2103,SC2115,SC2116,SC2119,SC2120,SC2121,SC2124,SC2126,SC2128,\