chore: enable pylint recursive linting (#1981)
This commit is contained in:
parent
473e770e8a
commit
f03605a6ce
|
@ -49,7 +49,7 @@ install: $(VENV)
|
||||||
.PHONY: .pylint
|
.PHONY: .pylint
|
||||||
.pylint: $(VENV)
|
.pylint: $(VENV)
|
||||||
source $(VENV)/bin/activate
|
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
|
.PHONY: .mypy
|
||||||
.mypy: $(VENV)
|
.mypy: $(VENV)
|
||||||
|
|
Loading…
Reference in New Issue