Skip to content
Closed
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
14 changes: 7 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: 'v0.11.11'
rev: 'v0.15.7'
hooks:
- id: ruff-format
exclude: tests/fixtures/.*
- id: ruff
args: [ --fix, --exit-non-zero-on-fix ]
exclude: test.*
- repo: https://github.com/codespell-project/codespell
rev: v2.4.1
rev: v2.4.2
hooks:
- id: codespell
additional_dependencies:
- tomli
args: [--ignore-words-list, astroid ]
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
rev: v6.0.0
hooks:
- id: check-added-large-files
- id: check-case-conflict
Expand Down Expand Up @@ -46,14 +46,14 @@ repos:
- id: detect-secrets
additional_dependencies: [ "gibberish-detector" ]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.15.0
rev: v1.19.1
hooks:
- id: mypy
args: [ --no-strict-optional, --ignore-missing-imports ]
additional_dependencies: [ "pydantic>2.0", "toml", "types-PyYAML" ]
exclude: "^tests/"
- repo: https://github.com/jsh9/pydoclint
rev: 0.6.7
rev: 0.8.3
hooks:
- id: pydoclint
args:
Expand All @@ -65,7 +65,7 @@ repos:
exclude: test.*

- repo: https://github.com/executablebooks/mdformat
rev: 0.7.22
rev: 1.0.0
hooks:
- id: mdformat
args:
Expand All @@ -74,7 +74,7 @@ repos:
- "mdformat-mkdocs[recommended]"

- repo: https://github.com/executablebooks/mdformat
rev: 0.7.22
rev: 1.0.0
hooks:
- id: mdformat
additional_dependencies:
Expand Down
Loading