Skip to content
Merged
Show file tree
Hide file tree
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
12 changes: 6 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.15.9
rev: v0.15.20
hooks:
- id: ruff-check
args: [--exit-non-zero-on-fix]

- repo: https://github.com/psf/black-pre-commit-mirror
rev: 26.3.1
rev: 26.5.1
hooks:
- id: black

Expand All @@ -27,7 +27,7 @@ repos:
exclude: \.github/ISSUE_TEMPLATE\.md|\.github/PULL_REQUEST_TEMPLATE\.md

- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.37.1
rev: 0.37.4
hooks:
- id: check-github-workflows
- id: check-renovate
Expand All @@ -38,12 +38,12 @@ repos:
- id: actionlint

- repo: https://github.com/zizmorcore/zizmor-pre-commit
rev: v1.23.1
rev: v1.26.1
hooks:
- id: zizmor

- repo: https://github.com/tox-dev/pyproject-fmt
rev: v2.21.0
rev: v2.25.1
hooks:
- id: pyproject-fmt

Expand All @@ -63,7 +63,7 @@ repos:
- id: yamlfmt

- repo: https://github.com/rbubley/mirrors-prettier
rev: v3.8.1
rev: v3.9.4
hooks:
- id: prettier
args: [--prose-wrap=always, --print-width=88]
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -100,15 +100,15 @@ lint.future-annotations = true
max_supported_python = "3.15"

[tool.mypy]
pretty = true
strict = true
pretty = true
show_error_codes = true

[tool.pytest]
minversion = "9.0"
addopts = [ "--color=yes" ]
testpaths = [ "tests" ]
filterwarnings = [ "error" ]
minversion = "9.0"
testpaths = [ "tests" ]

[tool.coverage]
# Regexes for lines to exclude from consideration
Expand Down
Loading