diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2021-05-25 16:40:14 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2021-05-25 16:40:14 -0700 |
commit | 064b05a2f49138a1708416b9fc1ac25c29a858ef (patch) | |
tree | 1e318f5251429df0d2d7a8649beb57bfb0fe81b3 /python/Makefile | |
parent | 4e89e677f03fbedb48f3f0dc6b23e159b5e33e27 (diff) | |
download | fatcat-064b05a2f49138a1708416b9fc1ac25c29a858ef.tar.gz fatcat-064b05a2f49138a1708416b9fc1ac25c29a858ef.zip |
makefile: add pylint -E invocation to 'make lint', to match CI
Diffstat (limited to 'python/Makefile')
-rw-r--r-- | python/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/python/Makefile b/python/Makefile index 2ac7bc5f..954fdc38 100644 --- a/python/Makefile +++ b/python/Makefile @@ -14,6 +14,7 @@ dep: ## Create local virtualenv using pipenv .PHONY: lint lint: ## Run lints (eg, flake8) + pipenv run pylint -E fatcat*.py fatcat_tools fatcat_web tests/*.py pipenv run flake8 *.py tests/ fatcat_web/ fatcat_tools/ --select=E9,F63,F7,F82 pipenv run flake8 *.py tests/ fatcat_web/ fatcat_tools/ --exit-zero |