chore: enable pylint recursive linting (#1981)

This commit is contained in:
Jonas L 2022-07-22 16:26:06 +02:00 committed by GitHub
parent 473e770e8a
commit f03605a6ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ install: $(VENV)
.PHONY: .pylint
.pylint: $(VENV)
source $(VENV)/bin/activate
pylint --jobs=$(CPU_CORES) --output-format=colorized $(PYLINT_ARG)
pylint --jobs=$(CPU_CORES) --output-format=colorized --recursive=true $(PYLINT_ARG)
.PHONY: .mypy
.mypy: $(VENV)