2022-10-28 22:16:23 +02:00
|
|
|
exclude: \.min\.(js|css)(\.map)?$|^\.idea/
|
2022-12-10 01:04:57 +01:00
|
|
|
ci:
|
|
|
|
skip: [pip-compile]
|
|
|
|
|
2022-10-28 22:16:23 +02:00
|
|
|
repos:
|
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
2022-11-29 07:21:53 +01:00
|
|
|
rev: v4.4.0
|
2022-10-28 22:16:23 +02:00
|
|
|
hooks:
|
|
|
|
- id: check-ast
|
|
|
|
- id: check-json
|
|
|
|
- id: check-toml
|
|
|
|
- id: check-xml
|
|
|
|
- id: check-yaml
|
|
|
|
- id: end-of-file-fixer
|
|
|
|
- id: check-merge-conflict
|
|
|
|
- id: pretty-format-json
|
|
|
|
args:
|
|
|
|
- --autofix
|
|
|
|
- --no-sort-keys
|
|
|
|
- id: trailing-whitespace
|
|
|
|
args:
|
|
|
|
- --markdown-linebreak-ext=md
|
|
|
|
- repo: https://github.com/asottile/pyupgrade
|
2022-12-13 07:19:11 +01:00
|
|
|
rev: v3.3.1
|
2022-10-28 22:16:23 +02:00
|
|
|
hooks:
|
|
|
|
- id: pyupgrade
|
2022-12-10 01:40:21 +01:00
|
|
|
args: [--py311-plus]
|
2022-10-28 22:16:23 +02:00
|
|
|
- repo: https://github.com/adamchainz/django-upgrade
|
2022-11-15 01:57:40 +01:00
|
|
|
rev: 1.12.0
|
2022-10-28 22:16:23 +02:00
|
|
|
hooks:
|
|
|
|
- id: django-upgrade
|
2022-12-10 01:40:21 +01:00
|
|
|
args: [--target-version, "4.1"]
|
2022-11-01 01:52:44 +01:00
|
|
|
- repo: https://github.com/PyCQA/isort
|
2022-12-13 07:19:11 +01:00
|
|
|
rev: 5.11.1
|
2022-10-28 22:16:23 +02:00
|
|
|
hooks:
|
|
|
|
- id: isort
|
|
|
|
args: [--profile, black]
|
|
|
|
- repo: https://github.com/psf/black
|
2022-12-13 07:19:11 +01:00
|
|
|
rev: 22.12.0
|
2022-10-28 22:16:23 +02:00
|
|
|
hooks:
|
|
|
|
- id: black
|
2022-12-10 01:40:21 +01:00
|
|
|
args: [--target-version, py311]
|
2022-10-28 22:16:23 +02:00
|
|
|
- repo: https://github.com/rtts/djhtml
|
|
|
|
rev: v1.5.2
|
|
|
|
hooks:
|
|
|
|
- id: djhtml
|
|
|
|
- repo: https://github.com/flakeheaven/flakeheaven
|
2022-11-08 00:40:25 +01:00
|
|
|
rev: 3.2.1
|
2022-10-28 22:16:23 +02:00
|
|
|
hooks:
|
|
|
|
- id: flakeheaven
|
|
|
|
additional_dependencies:
|
|
|
|
- flake8-annotations-complexity
|
|
|
|
- flake8-bandit
|
|
|
|
- flake8-builtins
|
|
|
|
- flake8-bugbear
|
|
|
|
- flake8-comprehensions
|
|
|
|
- flake8-docstrings
|
|
|
|
- flake8-eradicate
|
|
|
|
- flake8-noqa
|
|
|
|
- pep8-naming
|
|
|
|
- repo: https://github.com/pre-commit/mirrors-prettier
|
|
|
|
rev: v3.0.0-alpha.4
|
|
|
|
hooks:
|
|
|
|
- id: prettier
|
|
|
|
types_or: [javascript, css]
|
|
|
|
- repo: https://github.com/pre-commit/mirrors-eslint
|
2022-12-06 07:31:21 +01:00
|
|
|
rev: v8.29.0
|
2022-10-28 22:16:23 +02:00
|
|
|
hooks:
|
|
|
|
- id: eslint
|
|
|
|
args: [--fix]
|
|
|
|
types_or: [javascript, css]
|
|
|
|
additional_dependencies:
|
2022-12-10 01:52:08 +01:00
|
|
|
- eslint@8.29.0
|
|
|
|
- eslint-config-prettier@8.5.0
|
2022-12-10 01:00:10 +01:00
|
|
|
- repo: https://github.com/jazzband/pip-tools
|
|
|
|
rev: 6.11.0
|
|
|
|
hooks:
|
|
|
|
- id: pip-compile
|
|
|
|
name: pip-compile requirements.txt
|
2022-12-12 18:46:07 +01:00
|
|
|
args: [-q, --allow-unsafe, --resolver=backtracking, --generate-hashes, requirements.in]
|
2022-12-10 01:00:10 +01:00
|
|
|
files: ^requirements\.(in|txt)$
|
|
|
|
- id: pip-compile
|
|
|
|
name: pip-compile constraints.txt
|
2022-12-12 18:46:07 +01:00
|
|
|
args: [-q, --allow-unsafe, --resolver=backtracking, --strip-extras, --output-file=constraints.txt, requirements.in]
|
2022-12-10 01:00:10 +01:00
|
|
|
files: ^requirements\.in|constraints\.txt$
|
|
|
|
- id: pip-compile
|
|
|
|
name: pip-compile requirements-dev.in
|
2022-12-12 18:46:07 +01:00
|
|
|
args: [-q, --allow-unsafe, --resolver=backtracking, --generate-hashes, requirements-dev.in]
|
2022-12-10 01:00:10 +01:00
|
|
|
files: ^requirements-dev\.(in|txt)$
|