Skip to content
Snippets Groups Projects
Commit eb994ca6 authored by Vincent Texier's avatar Vincent Texier
Browse files

[enh] #91 add pylint check

parent 6c4d7425
No related branches found
No related tags found
1 merge request!65Pylint
.PHONY: docs tests check
.PHONY: docs tests check mypy pylint
# generate documentation
docs:
......@@ -8,6 +8,13 @@ docs:
tests:
python3 -m unittest ${TESTS_FILTER}
# check
check: mypy pylint
# check static typing
check:
mypy:
python3 -m mypy duniterpy --ignore-missing-imports
# check code errors
pylint:
pylint --disable=C --enable=C0121,C0202,C0321 --jobs=0 duniterpy/
coveralls
mypy
pylint
sphinx
sphinx_rtd_theme
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment