metadex/scripts/lint

16 lines
290 B
Text
Raw Normal View History

2022-08-14 20:41:58 +02:00
#!/bin/sh -eu
if [ "${1:-}" = '--fix' ]; then
2023-04-15 16:55:56 +02:00
ruff check --fix .
2023-02-08 23:01:45 +01:00
autoflake --recursive --in-place .
isort .
2022-08-14 20:41:58 +02:00
black .
else
2023-04-15 16:55:56 +02:00
ruff check .
2023-02-08 23:01:45 +01:00
autoflake --quiet --recursive --check .
isort --check .
2022-08-14 20:41:58 +02:00
black --check .
2023-02-08 22:42:06 +01:00
interrogate -v .
mypy --exclude tests .
2022-08-14 20:41:58 +02:00
fi