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
18 changes: 9 additions & 9 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ repos:
- id: no_optional

- repo: https://github.com/astral-sh/ruff-pre-commit.git
rev: v0.12.2
rev: v0.13.3
hooks:
- id: ruff
args:
# Ref: https://docs.astral.sh/ruff/formatter/#conflicting-lint-rules
- --fix # NOTE: When `--fix` is used, linting should be before ruff-format

- repo: https://github.com/astral-sh/ruff-pre-commit.git
rev: v0.12.2
rev: v0.13.3
hooks:
- id: ruff-format
alias: ruff-format-first-pass
Expand All @@ -58,7 +58,7 @@ repos:
- id: add-trailing-comma

- repo: https://github.com/astral-sh/ruff-pre-commit.git
rev: v0.12.2
rev: v0.13.3
hooks:
- id: ruff-format
alias: ruff-format-second-pass
Expand All @@ -70,7 +70,7 @@ repos:
- id: remove-tabs

- repo: https://github.com/python-jsonschema/check-jsonschema.git
rev: 0.33.2
rev: 0.34.0
hooks:
- id: check-github-workflows
files: ^\.github/workflows/[^/]+$
Expand All @@ -87,7 +87,7 @@ repos:
- id: check-readthedocs

- repo: https://github.com/andreoliwa/nitpick.git
rev: v0.35.0
rev: v0.36.0
hooks:
- id: nitpick-check
pass_filenames: false
Expand All @@ -102,7 +102,7 @@ repos:
- id: rst-backticks

- repo: https://github.com/pre-commit/pre-commit-hooks.git
rev: v5.0.0
rev: v6.0.0
hooks:
# Side-effects:
- id: trailing-whitespace
Expand Down Expand Up @@ -159,7 +159,7 @@ repos:
- id: bashate

- repo: https://github.com/shellcheck-py/shellcheck-py.git
rev: v0.10.0.1
rev: v0.11.0.1
hooks:
- id: shellcheck

Expand All @@ -180,7 +180,7 @@ repos:
language_version: python3

- repo: https://github.com/pre-commit/mirrors-mypy.git
rev: v1.16.1
rev: v1.18.2
hooks:
- id: mypy
alias: mypy-py313
Expand Down Expand Up @@ -247,7 +247,7 @@ repos:
pass_filenames: false

- repo: https://github.com/PyCQA/pylint.git
rev: v3.3.7
rev: v3.3.9
hooks:
- id: pylint
additional_dependencies:
Expand Down
Loading