blob: 0c706de00609329d6fd1f3c05d4de4de903b3423 [file] [log] [blame]
koder aka kdanilov39e449e2016-12-17 15:15:26 +02001.PHONY: mypy pylint pylint_e
koder aka kdanilov22d134e2016-11-08 11:33:19 +02002
koder aka kdanilov22d134e2016-11-08 11:33:19 +02003ALL_FILES=$(shell find wally/ -type f -name '*.py')
kdanylov aka koder026e5f22017-05-15 01:04:39 +03004STUBS="stubs:../venvs/wally/lib/python3.5/site-packages/"
koder aka kdanilov22d134e2016-11-08 11:33:19 +02005
6mypy:
kdanylov aka koder026e5f22017-05-15 01:04:39 +03007 MYPYPATH=${STUBS} python -m mypy --ignore-missing-imports --follow-imports=skip ${ALL_FILES}
koder aka kdanilov39e449e2016-12-17 15:15:26 +02008
9PYLINT_FMT=--msg-template={path}:{line}: [{msg_id}({symbol}), {obj}] {msg}
10
11pylint:
kdanylov aka koder026e5f22017-05-15 01:04:39 +030012 python -m pylint '${PYLINT_FMT}' --rcfile=pylint.rc ${ALL_FILES}
koder aka kdanilov39e449e2016-12-17 15:15:26 +020013
14pylint_e:
kdanylov aka koder026e5f22017-05-15 01:04:39 +030015 python3 -m pylint -E '${PYLINT_FMT}' --rcfile=pylint.rc ${ALL_FILES}