| exclude: json/ | |
| repos: | |
| - repo: https://github.com/pre-commit/pre-commit-hooks | |
| rev: v6.0.0 | |
| hooks: | |
| - id: check-ast | |
| - id: check-json | |
| - id: check-toml | |
| - id: check-vcs-permalinks | |
| - id: check-yaml | |
| - id: debug-statements | |
| exclude: "^jsonschema/tests/_suite.py$" | |
| - id: end-of-file-fixer | |
| - id: mixed-line-ending | |
| args: [--fix, lf] | |
| - id: trailing-whitespace | |
| - repo: https://github.com/astral-sh/ruff-pre-commit | |
| rev: "v0.12.11" | |
| hooks: | |
| - id: ruff | |
| args: [--fix, --exit-non-zero-on-fix] |