54 lines
1.2 KiB
YAML
54 lines
1.2 KiB
YAML
|
exclude: "^docs/|/migrations/"
|
||
|
default_stages: [ commit ]
|
||
|
fail_fast: true
|
||
|
|
||
|
repos:
|
||
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||
|
rev: v4.5.0
|
||
|
hooks:
|
||
|
- id: trailing-whitespace
|
||
|
- id: end-of-file-fixer
|
||
|
exclude: ".svg$|.min.*|.idea*"
|
||
|
- id: check-yaml
|
||
|
- id: check-added-large-files
|
||
|
|
||
|
- repo: https://github.com/asottile/pyupgrade
|
||
|
rev: v3.15.0
|
||
|
hooks:
|
||
|
- id: pyupgrade
|
||
|
args: [ --py39-plus ]
|
||
|
|
||
|
- repo: https://github.com/psf/black
|
||
|
rev: 23.12.1
|
||
|
hooks:
|
||
|
- id: black
|
||
|
|
||
|
- repo: https://github.com/PyCQA/isort
|
||
|
rev: 5.13.2
|
||
|
hooks:
|
||
|
- id: isort
|
||
|
args: [ "--profile", "black", "-l=88" ]
|
||
|
|
||
|
- repo: https://github.com/PyCQA/flake8
|
||
|
rev: 7.0.0
|
||
|
hooks:
|
||
|
- id: flake8
|
||
|
args: [ "--config=setup.cfg" ]
|
||
|
additional_dependencies:
|
||
|
- flake8-isort
|
||
|
- flake8-bugbear
|
||
|
- flake8-print
|
||
|
|
||
|
- repo: https://github.com/adamchainz/django-upgrade
|
||
|
rev: 1.15.0
|
||
|
hooks:
|
||
|
- id: django-upgrade
|
||
|
args: [ --target-version, "4.2" ]
|
||
|
|
||
|
|
||
|
# sets up .pre-commit-ci.yaml to ensure pre-commit dependencies stay up to date
|
||
|
ci:
|
||
|
autoupdate_schedule: weekly
|
||
|
skip: [ ]
|
||
|
submodules: false
|