2022-09-06 05:48:01 +02:00
|
|
|
---
|
2020-01-13 23:35:55 +01:00
|
|
|
# See https://pre-commit.com for more information
|
|
|
|
# See https://pre-commit.com/hooks.html for more hooks
|
|
|
|
repos:
|
2023-04-04 04:34:36 +02:00
|
|
|
- repo: https://github.com/psf/black
|
2023-07-31 01:28:26 +02:00
|
|
|
rev: 23.7.0
|
2020-01-13 23:35:55 +01:00
|
|
|
hooks:
|
2022-09-06 05:48:01 +02:00
|
|
|
- id: black
|
|
|
|
args:
|
|
|
|
- --safe
|
|
|
|
- --quiet
|
|
|
|
files: ^((esphome|script|tests)/.+)?[^/]+\.py$
|
2022-11-07 07:03:59 +01:00
|
|
|
- repo: https://github.com/PyCQA/flake8
|
2022-12-05 07:50:11 +01:00
|
|
|
rev: 6.0.0
|
2021-03-07 20:03:16 +01: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 20:03:16 +01:00
|
|
|
- --branch=beta
|
2022-02-10 09:55:11 +01:00
|
|
|
- repo: https://github.com/asottile/pyupgrade
|
2023-08-08 01:59:46 +02:00
|
|
|
rev: v3.10.1
|
2022-02-10 09:55:11 +01:00
|
|
|
hooks:
|
|
|
|
- id: pyupgrade
|
2022-10-05 09:09:27 +02:00
|
|
|
args: [--py39-plus]
|