Skip to content

Commit 089882a

Browse files
committed
fix compatibility
Signed-off-by: JaredforReal <[email protected]>
1 parent 38d14ce commit 089882a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tools/make/linter.mk

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,5 @@ shellcheck: ## Lint all shell scripts in the project
4444
echo " SKIP=shellcheck pre-commit run --all-files"; \
4545
exit 1; \
4646
fi
47-
@shellcheck --rcfile=tools/linter/shellcheck/.shellcheckrc $(shell find . -type f -name "*.sh" -not -path "./node_modules/*" -not -path "./website/node_modules/*" -not -path "./dashboard/frontend/node_modules/*" -not -path "./models/*" -not -path "./.venv/*")
47+
@echo "Running shellcheck with config from tools/linter/shellcheck/.shellcheckrc"
48+
@shellcheck -e SC2155,SC2034,SC1091 $(shell find . -type f -name "*.sh" -not -path "./node_modules/*" -not -path "./website/node_modules/*" -not -path "./dashboard/frontend/node_modules/*" -not -path "./models/*" -not -path "./.venv/*")

0 commit comments

Comments
 (0)