mirror of
https://github.com/esphome/aioesphomeapi.git
synced 2024-11-15 10:55:13 +01:00
39 lines
933 B
YAML
39 lines
933 B
YAML
---
|
|
exclude: '^aioesphomeapi/api.*$'
|
|
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v3.2.0
|
|
hooks:
|
|
- id: trailing-whitespace
|
|
- id: end-of-file-fixer
|
|
- id: check-added-large-files
|
|
- repo: https://github.com/asottile/pyupgrade
|
|
rev: v2.37.1
|
|
hooks:
|
|
- id: pyupgrade
|
|
args: [--py39-plus]
|
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
rev: v0.5.4
|
|
hooks:
|
|
- id: ruff
|
|
args: [--fix]
|
|
- id: ruff-format
|
|
- repo: https://github.com/psf/black-pre-commit-mirror
|
|
rev: 24.1.1
|
|
hooks:
|
|
- id: black
|
|
args:
|
|
- --safe
|
|
- --quiet
|
|
files: ^((aioesphomeapi|tests)/.+)?[^/]+\.py$
|
|
- repo: https://github.com/cdce8p/python-typing-update
|
|
rev: v0.6.0
|
|
hooks:
|
|
- id: python-typing-update
|
|
stages: [manual]
|
|
args:
|
|
- --py39-plus
|
|
- --force
|
|
- --keep-updates
|
|
files: ^(aioesphomeapi)/.+\.py$
|