23 lines
701 B
YAML
23 lines
701 B
YAML
# See https://pre-commit.com for more information
|
|
# See https://pre-commit.com/hooks.html for more hooks
|
|
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.6.0
|
|
hooks:
|
|
- id: trailing-whitespace
|
|
- id: end-of-file-fixer
|
|
- id: check-yaml
|
|
- id: check-added-large-files
|
|
- repo: https://github.com/asottile/add-trailing-comma
|
|
rev: v3.1.0
|
|
hooks:
|
|
- id: add-trailing-comma
|
|
- repo: https://github.com/asottile/reorder-python-imports
|
|
rev: v3.13.0
|
|
hooks:
|
|
- id: reorder-python-imports
|
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
rev: v0.5.5
|
|
hooks:
|
|
- id: ruff
|
|
args: [--fix, --exit-non-zero-on-fix]
|