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
14 changes: 7 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
repos:
# Versioning: Commit messages & changelog
- repo: https://github.com/commitizen-tools/commitizen
rev: v4.13.10
rev: v4.18.1
hooks:
- id: commitizen
stages: [commit-msg]

# Lint / autoformat: Python code
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: "v0.15.12"
rev: "v0.16.8"
hooks:
- id: ruff
files: ^(?:backend|auth-libs/python)/.*\.py$
Expand All @@ -21,7 +21,7 @@ repos:

# Deps: ensure Python uv lockfile is up to date
- repo: https://github.com/astral-sh/uv-pre-commit
rev: 0.11.7
rev: 0.12.17
hooks:
- id: uv-lock
files: ^backend/pyproject\.toml$
Expand All @@ -40,14 +40,14 @@ repos:

# Lint: code cognitive complexity
- repo: https://github.com/rohaquinlop/complexipy-pre-commit
rev: v5.1.0
rev: v8.0.1
hooks:
- id: complexipy
files: ^(?:backend|auth-libs/python)/.*\.py$

# Spelling: Checks for common misspellings in text files.
- repo: https://github.com/crate-ci/typos
rev: v1
rev: v1.50.2
hooks:
- id: typos
pass_filenames: false
Expand Down Expand Up @@ -75,7 +75,7 @@ repos:

# Lint: Shell scripts
- repo: https://github.com/shellcheck-py/shellcheck-py
rev: v0.11.0.1
rev: v0.11.0.1-1
hooks:
- id: shellcheck
types: [shell]
Expand All @@ -90,7 +90,7 @@ repos:

# Lint: Markdown
- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.48.0
rev: v0.49.1
hooks:
- id: markdownlint
# Rule config lives in .markdownlint.json
Expand Down