| 123456789101112131415161718192021 |
- repos:
- - repo: https://github.com/pre-commit/pre-commit-hooks
- rev: v6.0.0
- hooks:
- - id: trailing-whitespace
- exclude: ^docs/
- - id: end-of-file-fixer
- exclude: ^docs/
- - id: check-yaml
- - id: check-toml
- - id: debug-statements
- language_version: python3
- - repo: https://github.com/astral-sh/ruff-pre-commit
- rev: v0.14.9
- hooks:
- - id: ruff
- args: [--fix, --select=I]
- exclude: ^docs/
- - id: ruff-format
- exclude: ^docs/
|