mirror of
https://github.com/esphome/aioesphomeapi.git
synced 2024-12-25 17:17:42 +01:00
11 lines
216 B
Plaintext
11 lines
216 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
cd "$(dirname "$0")/.."
|
||
|
set -euxo pipefail
|
||
|
|
||
|
black --safe --exclude 'api_pb2.py|api_options_pb2.py' aioesphomeapi
|
||
|
pylint aioesphomeapi
|
||
|
flake8 aioesphomeapi
|
||
|
isort aioesphomeapi
|
||
|
mypy --strict aioesphomeapi
|