lint.sh 98 B

12345678
  1. #!/usr/bin/env bash
  2. set -x
  3. mypy app
  4. black app --check
  5. isort --recursive --check-only app
  6. flake8