home · contact · privacy
Use different do_GET handlers for different paths.
[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