mirror of
https://github.com/paul-nameless/tg
synced 2024-11-22 03:43:19 +00:00
21 lines
527 B
Bash
21 lines
527 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -ex
|
||
|
|
||
|
echo Checking and formatting with black...
|
||
|
black --check .
|
||
|
|
||
|
echo Python type checking...
|
||
|
mypy tg --warn-redundant-casts --warn-unused-ignores \
|
||
|
--no-warn-no-return --warn-unreachable --strict-equality \
|
||
|
--ignore-missing-imports --warn-unused-configs \
|
||
|
--disallow-untyped-calls --disallow-untyped-defs \
|
||
|
--disallow-incomplete-defs --check-untyped-defs \
|
||
|
--disallow-untyped-decorators
|
||
|
|
||
|
echo Checking import sorting...
|
||
|
isort -c tg/*.py
|
||
|
|
||
|
echo Checking unused imports...
|
||
|
flake8 --select=F401
|