38 lines
934 B
YAML
38 lines
934 B
YAML
ci:
|
|
autofix_prs: false
|
|
|
|
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.5.0
|
|
hooks:
|
|
- id: trailing-whitespace
|
|
- id: end-of-file-fixer
|
|
exclude: ^.*\.egg-info/
|
|
- id: check-merge-conflict
|
|
- id: check-case-conflict
|
|
- id: check-json
|
|
- id: check-toml
|
|
exclude: tests/fixtures/invalid_lock/poetry\.lock
|
|
- id: check-yaml
|
|
- id: pretty-format-json
|
|
args: [--autofix, --no-ensure-ascii, --no-sort-keys]
|
|
- id: check-ast
|
|
- id: debug-statements
|
|
- id: check-docstring-first
|
|
|
|
- repo: https://github.com/psf/black-pre-commit-mirror
|
|
rev: 24.2.0
|
|
hooks:
|
|
- id: black
|
|
exclude: tests/([^/]*/)*fixtures/
|
|
|
|
- repo: https://github.com/pre-commit/pre-commit
|
|
rev: v3.6.2
|
|
hooks:
|
|
- id: validate_manifest
|
|
|
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
rev: v0.2.2
|
|
hooks:
|
|
- id: ruff
|