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
|
|
|
|
rev: "1.12.0"
|
|
|
|
hooks:
|
|
|
|
- id: django-upgrade
|
|
|
|
args: [--target-version, "4.1"]
|
|
|
|
|
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
|
|
|
|
rev: 5.10.1
|
|
|
|
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-15 07:50:54 +00:00
|
|
|
additional_dependencies: [types-pyopenssl, types-bleach, types-mock, types-cachetools]
|