2022-11-05 20:17:27 +00:00
|
|
|
repos:
|
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
2022-12-04 00:14:56 +00:00
|
|
|
rev: v4.4.0
|
2022-11-05 20:17:27 +00:00
|
|
|
hooks:
|
|
|
|
- id: check-case-conflict
|
|
|
|
- id: check-merge-conflict
|
|
|
|
- id: check-yaml
|
|
|
|
- id: end-of-file-fixer
|
|
|
|
- id: file-contents-sorter
|
2022-12-04 00:14:56 +00:00
|
|
|
args: ["--ignore-case", "--unique"]
|
|
|
|
files: ^(\.gitignore|\.dockerignore|requirements[-\w]*.txt)$
|
2022-11-05 20:17:27 +00:00
|
|
|
- id: mixed-line-ending
|
|
|
|
args: ["--fix=lf"]
|
|
|
|
- id: pretty-format-json
|
2022-12-04 00:14:56 +00:00
|
|
|
- id: trailing-whitespace
|
2022-11-05 20:17:27 +00:00
|
|
|
|
2022-12-05 17:38:37 +00:00
|
|
|
- repo: https://github.com/asottile/pyupgrade
|
|
|
|
rev: "v3.3.0"
|
|
|
|
hooks:
|
|
|
|
- id: pyupgrade
|
|
|
|
args: [--py310-plus]
|
|
|
|
|
2022-12-05 21:44:50 +00:00
|
|
|
- repo: https://github.com/adamchainz/django-upgrade
|
2023-05-13 17:20:47 +00:00
|
|
|
rev: "1.13.0"
|
2022-12-05 21:44:50 +00:00
|
|
|
hooks:
|
|
|
|
- id: django-upgrade
|
2023-05-13 17:20:47 +00:00
|
|
|
args: [--target-version, "4.2"]
|
2022-12-05 21:44:50 +00:00
|
|
|
|
2022-11-05 20:17:27 +00:00
|
|
|
- repo: https://github.com/psf/black
|
|
|
|
rev: 22.10.0
|
|
|
|
hooks:
|
|
|
|
- id: black
|
|
|
|
|
|
|
|
- repo: https://github.com/pycqa/isort
|
2023-01-29 17:45:40 +00:00
|
|
|
rev: 5.12.0
|
2022-11-05 20:17:27 +00:00
|
|
|
hooks:
|
|
|
|
- id: isort
|
|
|
|
args: ["--profile=black"]
|
|
|
|
|
2022-11-20 18:46:57 +00:00
|
|
|
- repo: https://github.com/pycqa/flake8
|
2022-12-04 00:14:56 +00:00
|
|
|
rev: 6.0.0
|
2022-11-05 20:17:27 +00:00
|
|
|
hooks:
|
|
|
|
- id: flake8
|
|
|
|
|
|
|
|
- repo: https://github.com/pre-commit/mirrors-mypy
|
2022-12-04 00:14:56 +00:00
|
|
|
rev: v0.991
|
2022-11-05 20:17:27 +00:00
|
|
|
hooks:
|
|
|
|
- id: mypy
|
2022-12-20 11:39:45 +00:00
|
|
|
exclude: "^tests/"
|
2022-12-18 17:45:32 +00:00
|
|
|
additional_dependencies:
|
2023-01-30 00:46:22 +00:00
|
|
|
[types-pyopenssl, types-mock, types-cachetools, types-python-dateutil]
|
2023-01-09 16:58:17 +00:00
|
|
|
|
|
|
|
- repo: https://github.com/rtts/djhtml
|
|
|
|
rev: v1.5.2
|
|
|
|
hooks:
|
|
|
|
- id: djhtml
|
|
|
|
- id: djcss
|
|
|
|
- id: djjs
|