2021-06-18 17:57:02 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
set -euxo pipefail
|
|
|
|
|
2021-06-30 17:03:55 +02:00
|
|
|
black --safe aioesphomeapi
|
2021-06-18 17:57:02 +02:00
|
|
|
pylint aioesphomeapi
|
|
|
|
flake8 aioesphomeapi
|
|
|
|
isort aioesphomeapi
|
2021-06-30 17:03:55 +02:00
|
|
|
mypy aioesphomeapi
|