Skip to content
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
24 changes: 12 additions & 12 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
---
repos:
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.27.0
rev: 0.33.3
hooks:
- id: check-github-workflows

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
rev: v6.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
Expand All @@ -24,24 +24,24 @@ repos:
- --no-sort-keys

- repo: https://github.com/adrienverge/yamllint
rev: v1.32.0
rev: v1.37.1
hooks:
- id: yamllint
args:
- --strict

- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.37.0
rev: v0.45.0
hooks:
- id: markdownlint

- repo: https://github.com/psf/black
rev: 23.10.1
rev: 25.1.0
hooks:
- id: black

- repo: https://github.com/pycqa/flake8
rev: 6.1.0
rev: 7.3.0
hooks:
- id: flake8
additional_dependencies:
Expand All @@ -52,36 +52,36 @@ repos:
- --ignore=E501,E203,W503

- repo: https://github.com/pycqa/isort
rev: 5.12.0
rev: 6.0.1
hooks:
- id: isort
args:
- --profile=black

- repo: https://github.com/asottile/pyupgrade
rev: v3.15.0
rev: v3.20.0
hooks:
- id: pyupgrade

- repo: https://github.com/codespell-project/codespell
rev: v2.2.6
rev: v2.4.1
hooks:
- id: codespell
args:
- --ignore-words-list
- hass,juni,juli,oktober

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.6.1
rev: v1.17.1
hooks:
- id: mypy
files: pyavanza/
args:
- --strict
- --ignore-missing-imports

- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: v0.1.3
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.12.12
hooks:
- id: ruff
args:
Expand Down
Loading