Files
esphome/.pre-commit-config.yaml
T

34 lines
872 B
YAML
Raw Normal View History

2022-09-06 15:48:01 +12:00
---
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
2021-03-07 16:03:16 -03:00
- repo: https://github.com/ambv/black
2022-11-07 19:24:50 +13:00
rev: 22.10.0
hooks:
2022-09-06 15:48:01 +12:00
- id: black
args:
- --safe
- --quiet
files: ^((esphome|script|tests)/.+)?[^/]+\.py$
2022-11-07 19:03:59 +13:00
- repo: https://github.com/PyCQA/flake8
rev: 5.0.4
2021-03-07 16:03:16 -03:00
hooks:
- id: flake8
additional_dependencies:
- flake8-docstrings==1.5.0
- pydocstyle==5.1.1
files: ^(esphome|tests)/.+\.py$
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.4.0
hooks:
- id: no-commit-to-branch
args:
- --branch=dev
2021-07-02 15:42:36 +02:00
- --branch=release
2021-03-07 16:03:16 -03:00
- --branch=beta
2022-02-10 21:55:11 +13:00
- repo: https://github.com/asottile/pyupgrade
2022-11-07 19:03:59 +13:00
rev: v3.2.0
2022-02-10 21:55:11 +13:00
hooks:
- id: pyupgrade
2022-10-05 20:09:27 +13:00
args: [--py39-plus]