From 4b937fda5b5153cb4666f2ff5ef173c66b65ecd9 Mon Sep 17 00:00:00 2001 From: Andreas Perhab Date: Mon, 17 Apr 2023 10:42:35 +0200 Subject: [PATCH] shellcheck: do not check .git folder (#3267) --- test/linting/lint.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/linting/lint.sh b/test/linting/lint.sh index 39c86250..e3045897 100755 --- a/test/linting/lint.sh +++ b/test/linting/lint.sh @@ -51,7 +51,8 @@ function _shellcheck # File paths for shellcheck: F_SH=$(find . -type f -iname '*.sh' \ -not -path './test/bats/*' \ - -not -path './test/test_helper/*' + -not -path './test/test_helper/*' \ + -not -path './.git/*' ) # shellcheck disable=SC2248 F_BIN=$(find 'target/bin' -type f -not -name '*.py')