We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38d14ce commit 089882aCopy full SHA for 089882a
tools/make/linter.mk
@@ -44,4 +44,5 @@ shellcheck: ## Lint all shell scripts in the project
44
echo " SKIP=shellcheck pre-commit run --all-files"; \
45
exit 1; \
46
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/*")
+ @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