Makefile: Add a make lint-python command

Fixes #45
This commit is contained in:
Christian Clauss 2020-07-06 11:41:23 +02:00 committed by GitHub
parent d9e094c305
commit e4f49b5123
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -52,6 +52,11 @@ check-licenses:
.PHONY: check-licenses
lint-python:
@python3 -m flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
.PHONY: lint-python
check: check-licenses
@true