Files
fastapi/scripts/lint.sh
2019-05-15 22:13:06 +04:00

9 lines
270 B
Bash
Executable File

#!/usr/bin/env bash
set -e
set -x
mypy fastapi --disallow-untyped-defs --follow-imports=skip
black fastapi tests --check
isort --multi-line=3 --trailing-comma --force-grid-wrap=0 --combine-as --line-width 88 --recursive --check-only --thirdparty fastapi fastapi tests