| repos: |
| - repo: https://github.com/astral-sh/ruff-pre-commit |
| rev: v0.14.10 |
| hooks: |
| - id: ruff |
| - repo: https://github.com/pre-commit/pre-commit-hooks |
| rev: v6.0.0 |
| hooks: |
| - id: trailing-whitespace |
| - id: end-of-file-fixer |
| - id: check-docstring-first |
| - id: check-yaml |
| - id: check-toml |
| - id: check-merge-conflict |
| - id: check-case-conflict |
| - id: forbid-submodules |
| - id: mixed-line-ending |
| args: [--fix=lf] |
| - repo: https://github.com/sphinx-contrib/sphinx-lint |
| rev: v1.0.2 |
| hooks: |
| - id: sphinx-lint |
| - repo: https://github.com/python-jsonschema/check-jsonschema |
| rev: 0.36.0 |
| hooks: |
| - id: check-dependabot |
| - id: check-github-workflows |
| - id: check-readthedocs |
| - repo: https://github.com/abravalheri/validate-pyproject |
| rev: v0.24.1 |
| hooks: |
| - id: validate-pyproject |
| additional_dependencies: ["validate-pyproject-schema-store[all]"] |
| - repo: https://github.com/rhysd/actionlint |
| rev: v1.7.10 |
| hooks: |
| - id: actionlint |
| additional_dependencies: |
| # actionlint has a shellcheck integration which extracts shell scripts in `run:` steps from GitHub Actions |
| # and checks these with shellcheck. This is arguably its most useful feature, |
| # but the integration only works if shellcheck is installed |
| - "github.com/wasilibs/go-shellcheck/cmd/shellcheck@v0.11.1" |
| - repo: https://github.com/woodruffw/zizmor-pre-commit |
| rev: v1.19.0 |
| hooks: |
| - id: zizmor |
| - repo: meta |
| hooks: |
| - id: check-hooks-apply |
| |
| ci: |
| autoupdate_schedule: quarterly |