diff --git a/Makefile b/Makefile index 134cb220..02c2404c 100644 --- a/Makefile +++ b/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 #