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
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ exclude: '^docs/conf.py'

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
rev: v6.0.0
hooks:
- id: trailing-whitespace
- id: check-added-large-files
Expand All @@ -18,26 +18,26 @@ repos:
args: ['--fix=auto'] # replace 'auto' with 'lf' to enforce Linux/Mac line endings or 'crlf' for Windows

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: 'v0.7.0' # make sure this is consistent with with pyproject.toml
rev: 'v0.14.8' # make sure this is consistent with with pyproject.toml
hooks:
- id: ruff
args: [--fix]
- id: ruff-format

- repo: https://github.com/asottile/pyupgrade
rev: v3.18.0
rev: v3.21.2
hooks:
- id: pyupgrade
args: ['--py38-plus']

- repo: https://github.com/asottile/blacken-docs
rev: 1.19.0
rev: 1.20.0
hooks:
- id: blacken-docs
additional_dependencies: [black]

- repo: https://github.com/codespell-project/codespell
rev: v2.3.0
rev: v2.4.1
hooks:
- id: codespell
args: [-w]