Makefile: Add a lint target
The new target just runs all the linters in parallel.
This commit is contained in:
parent
161fe789af
commit
dc0dbb0f09
1 changed files with 10 additions and 0 deletions
10
Makefile
10
Makefile
|
|
@ -248,6 +248,16 @@ test-all:
|
|||
--rootdir=$(SRCDIR) \
|
||||
-v
|
||||
|
||||
#
|
||||
# Linting the code
|
||||
#
|
||||
# Just run `make lint` and see if our linters like your code.
|
||||
#
|
||||
|
||||
.PHONY: lint
|
||||
lint:
|
||||
tox run-parallel -e ruff,pylint,autopep8,isort,mypy
|
||||
|
||||
#
|
||||
# Building packages
|
||||
#
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue