felicity-lims/felicity/scripts/lint.sh

9 lines
94 B
Bash
Raw Normal View History

2023-04-10 20:23:31 +08:00
#!/usr/bin/env bash
set -x
mypy .
black . --check
isort --recursive --check-only .
flake8 .