From 178e76f940a67264f8a8cbeeb1aa2bc32751e32d Mon Sep 17 00:00:00 2001 From: Simon Deziel Date: Mon, 8 Jul 2024 21:51:23 -0400 Subject: [PATCH] test/suites/static_analysis: ignore some suggestions from shellcheck Signed-off-by: Simon Deziel --- test/suites/static_analysis.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/suites/static_analysis.sh b/test/suites/static_analysis.sh index a0757e0be554..3df12a4e8e7a 100644 --- a/test/suites/static_analysis.sh +++ b/test/suites/static_analysis.sh @@ -21,7 +21,7 @@ test_static_analysis() { # Shell static analysis if command -v shellcheck >/dev/null 2>&1; then - shellcheck --shell sh test/*.sh test/includes/*.sh test/suites/*.sh test/backends/*.sh + shellcheck -e SC2086 -e SC2269 -e SC2295 --shell sh test/*.sh test/includes/*.sh test/suites/*.sh test/backends/*.sh else echo "shellcheck not found, shell static analysis disabled" fi