forked from Github-Mirrors/canaille
35 lines
894 B
YAML
35 lines
894 B
YAML
---
|
|
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.4.0
|
|
hooks:
|
|
- id: fix-byte-order-marker
|
|
- id: trailing-whitespace
|
|
- id: end-of-file-fixer
|
|
- repo: https://github.com/PyCQA/autoflake
|
|
rev: v2.0.2
|
|
hooks:
|
|
- id: autoflake
|
|
- repo: https://github.com/hadialqattan/pycln
|
|
rev: v2.1.3
|
|
hooks:
|
|
- id: pycln
|
|
args: [--config=pyproject.toml]
|
|
- repo: https://github.com/asottile/reorder_python_imports
|
|
rev: v3.9.0
|
|
hooks:
|
|
- id: reorder-python-imports
|
|
args: ["--application-directories", "canaille"]
|
|
- repo: https://github.com/asottile/pyupgrade
|
|
rev: v3.3.1
|
|
hooks:
|
|
- id: pyupgrade
|
|
args: ["--py37-plus"]
|
|
- repo: https://github.com/psf/black
|
|
rev: 23.1.0
|
|
hooks:
|
|
- id: black
|
|
- repo: https://github.com/rtts/djhtml
|
|
rev: 3.0.5
|
|
hooks:
|
|
- id: djhtml
|