home · contact · privacy
Move pylint configuration into .pylintrc.
[plomtask] / scripts / pre-commit
1 #!/bin/sh
2 set -e
3 python3 -m mypy *.py
4 python3 -m flake8 *.py
5 python3 -m pylint *.py
6 exit 0