aioesphomeapi/script/lint

12 lines
190 B
Plaintext
Raw Normal View History

#!/bin/bash
cd "$(dirname "$0")/.."
set -euxo pipefail
2021-07-12 20:09:17 +02:00
black --safe aioesphomeapi tests
pylint aioesphomeapi
flake8 aioesphomeapi
2021-07-12 20:09:17 +02:00
isort aioesphomeapi tests
2021-06-30 17:03:55 +02:00
mypy aioesphomeapi
2021-07-12 20:09:17 +02:00
pytest tests