Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pre-commit.ci] pre-commit autoupdate #18

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,29 +7,29 @@ ci:

repos:
- repo: https://github.com/asottile/pyupgrade
rev: v3.3.1
rev: v3.19.1
hooks:
- id: pyupgrade
args: [--py39-plus]
- repo: https://github.com/PyCQA/isort
rev: 5.12.0
rev: 5.13.2
hooks:
- id: isort
- repo: https://github.com/myint/autoflake/
rev: v2.0.1
rev: v2.3.1
hooks:
- id: autoflake
files: ^((custom_components)/.+)?[^/]+\.py$
- repo: https://github.com/psf/black
rev: 23.1.0
rev: 24.10.0
hooks:
- id: black
args:
- --safe
- --quiet
files: ^((custom_components)/.+)?[^/]+\.py$
- repo: https://github.com/codespell-project/codespell
rev: v2.2.2
rev: v2.3.0
hooks:
- id: codespell
args:
Expand All @@ -38,7 +38,7 @@ repos:
- --quiet-level=2
exclude_types: [csv, json]
- repo: https://github.com/PyCQA/flake8
rev: 6.0.0
rev: 7.1.1
hooks:
- id: flake8
additional_dependencies:
Expand All @@ -47,7 +47,7 @@ repos:
- Flake8-pyproject==1.2.2
files: ^((custom_components)/.+)?[^/]+\.py$
- repo: https://github.com/PyCQA/bandit
rev: 1.7.4
rev: 1.8.2
hooks:
- id: bandit
args:
Expand All @@ -56,7 +56,7 @@ repos:
- --exclude=examples
files: ^((custom_components)/.+)?[^/]+\.py$
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v5.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
Expand All @@ -65,17 +65,17 @@ repos:
- id: check-json
exclude: (.vscode|.devcontainer)
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.0.0
rev: v1.14.1
hooks:
- id: mypy
additional_dependencies: [types-all]
- repo: https://github.com/adrienverge/yamllint.git
rev: v1.29.0
rev: v1.35.1
hooks:
- id: yamllint
exclude: (.vscode|.devcontainer|.github)
- repo: https://github.com/pappasam/toml-sort
rev: v0.22.3
rev: v0.24.2
hooks:
- id: toml-sort
args: []
Expand Down
Loading