57 lines
1.6 KiB
YAML
57 lines
1.6 KiB
YAML
ci:
|
|
autofix_prs: false
|
|
autoupdate_commit_msg: "pre-commit: bump repositories"
|
|
|
|
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.4.0
|
|
hooks:
|
|
- id: check-ast
|
|
- id: check-builtin-literals
|
|
- id: check-docstring-first
|
|
- id: check-merge-conflict
|
|
- id: check-yaml
|
|
- id: check-toml
|
|
exclude: tests/packages/test-(bad-syntax|no-permission)/pyproject.toml
|
|
- id: debug-statements
|
|
- id: end-of-file-fixer
|
|
- id: trailing-whitespace
|
|
- id: double-quote-string-fixer
|
|
- repo: https://github.com/abravalheri/validate-pyproject
|
|
rev: v0.14
|
|
hooks:
|
|
- id: validate-pyproject
|
|
- repo: https://github.com/psf/black-pre-commit-mirror
|
|
rev: 23.7.0
|
|
hooks:
|
|
- id: black
|
|
- repo: https://github.com/asottile/blacken-docs
|
|
rev: 1.16.0
|
|
hooks:
|
|
- id: blacken-docs
|
|
additional_dependencies: [black==23.7.0]
|
|
- repo: https://github.com/pre-commit/mirrors-prettier
|
|
rev: "v3.0.3"
|
|
hooks:
|
|
- id: prettier
|
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
rev: v0.0.287
|
|
hooks:
|
|
- id: ruff
|
|
args: [--fix, --format, grouped, --show-fixes]
|
|
- repo: https://github.com/codespell-project/codespell
|
|
rev: "v2.2.5"
|
|
hooks:
|
|
- id: codespell
|
|
args: ["-L", "sur"]
|
|
- repo: https://github.com/pre-commit/pygrep-hooks
|
|
rev: "v1.10.0"
|
|
hooks:
|
|
- id: rst-backticks
|
|
- id: rst-directive-colons
|
|
- id: rst-inline-touching-normal
|
|
- repo: https://github.com/tox-dev/tox-ini-fmt
|
|
rev: "1.3.1"
|
|
hooks:
|
|
- id: tox-ini-fmt
|