Add a makefile target for running PEP8 checks.

pull/8/head
Dave Page 2018-03-02 12:01:55 +00:00
parent 8964e511bf
commit 31f50634c7
1 changed files with 3 additions and 0 deletions

View File

@ -46,6 +46,9 @@ check-feature: install-node bundle
check-js: install-node linter
cd web && yarn run karma start --single-run
check-pep8:
pycodestyle --config=web/.pycodestyle ./web/pgadmin/
# Include all clean sub-targets in clean
clean: clean-appbundle clean-docker clean-dist clean-docs clean-pip clean-src