Makefile: Add a lint target

The new target just runs all the linters in parallel.
This commit is contained in:
Ondřej Budai 2023-08-07 16:57:28 +02:00 committed by Simon de Vlieger
parent 161fe789af
commit dc0dbb0f09

View file

@ -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
#