takahe/.pre-commit-config.yaml

57 wiersze
1.4 KiB
YAML

2022-11-05 20:17:27 +00:00
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
2023-11-09 19:07:21 +00:00
rev: v4.5.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
- repo: https://github.com/asottile/pyupgrade
2023-11-09 19:07:21 +00:00
rev: "v3.15.0"
hooks:
- id: pyupgrade
2023-11-09 19:07:21 +00:00
args: [--py311-plus]
- repo: https://github.com/adamchainz/django-upgrade
2023-11-09 19:07:21 +00:00
rev: "1.15.0"
hooks:
- id: django-upgrade
2023-05-13 17:20:47 +00:00
args: [--target-version, "4.2"]
2023-11-09 19:07:21 +00:00
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 23.11.0
2022-11-05 20:17:27 +00:00
hooks:
- id: black
- repo: https://github.com/pycqa/isort
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
2023-11-09 19:07:21 +00:00
rev: 6.1.0
2022-11-05 20:17:27 +00:00
hooks:
- id: flake8
- repo: https://github.com/pre-commit/mirrors-mypy
2023-11-09 19:07:21 +00:00
rev: v1.6.1
2022-11-05 20:17:27 +00:00
hooks:
- id: mypy
exclude: "^tests/"
2022-12-18 17:45:32 +00:00
additional_dependencies:
[types-pyopenssl, types-mock, types-cachetools, types-python-dateutil]
2023-01-09 16:58:17 +00:00
- repo: https://github.com/rtts/djhtml
2023-11-09 19:07:21 +00:00
rev: 3.0.6
2023-01-09 16:58:17 +00:00
hooks:
- id: djhtml