takahe/.pre-commit-config.yaml

65 wiersze
1.5 KiB
YAML
Czysty Zwykły widok Historia

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
- repo: https://github.com/asottile/pyupgrade
rev: "v3.3.0"
hooks:
- id: pyupgrade
args: [--py310-plus]
- 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
exclude: "^tests/"
2022-12-18 17:45:32 +00:00
additional_dependencies:
[
types-pyopenssl,
types-bleach,
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