diff options
author | Markus Heiser <markus.heiser@darmarit.de> | 2019-11-28 20:07:10 +0100 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarit.de> | 2019-11-28 20:07:10 +0100 |
commit | 796197db2d135fe3342e4355aeb57a74dfa6beca (patch) | |
tree | 3c05170faa16e8da766188ec5b391c3f1ac4d5b2 /Makefile | |
parent | 7e572a2453d18bdb3f44b65cbc1441004c4faa5f (diff) | |
download | searxng-796197db2d135fe3342e4355aeb57a74dfa6beca.tar.gz searxng-796197db2d135fe3342e4355aeb57a74dfa6beca.zip |
boilerplate: add pylint / WIP: balance linting with pylint
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -43,9 +43,11 @@ run: pyenvinstall # test # ---- -PHONY += test test.pep8 test.unit test.robot +PHONY += test test.pylint test.pep8 test.unit test.robot +# TODO: balance linting with pylint test: test.pep8 test.unit test.robot + - make pylint test.pep8: pyenvinstall $(PY_ENV_ACT); ./manage.sh pep8_check |