2023-03-25 20:01:14 +01:00
|
|
|
exclude: \.min\.(js|css)(\.map)?$|^\.idea/|/vendor/
|
|
|
|
ci:
|
|
|
|
skip: [pip-compile]
|
|
|
|
|
2022-04-24 15:51:25 +02:00
|
|
|
repos:
|
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
2024-04-09 01:05:03 +02:00
|
|
|
rev: v4.6.0
|
2022-04-24 15:51:25 +02:00
|
|
|
hooks:
|
|
|
|
- id: check-ast
|
|
|
|
- id: check-json
|
|
|
|
- id: check-toml
|
|
|
|
- id: check-xml
|
|
|
|
- id: check-yaml
|
|
|
|
args: [--allow-multiple-documents]
|
|
|
|
- id: end-of-file-fixer
|
|
|
|
- id: check-merge-conflict
|
|
|
|
- id: debug-statements
|
|
|
|
- id: detect-private-key
|
|
|
|
- id: pretty-format-json
|
|
|
|
args:
|
|
|
|
- --autofix
|
|
|
|
- --no-sort-keys
|
|
|
|
- id: trailing-whitespace
|
|
|
|
args:
|
|
|
|
- --markdown-linebreak-ext=md
|
2023-03-25 20:01:14 +01:00
|
|
|
- id: check-executables-have-shebangs
|
|
|
|
- id: check-shebang-scripts-are-executable
|
2022-04-24 15:51:25 +02:00
|
|
|
- repo: https://github.com/adamchainz/django-upgrade
|
2024-06-04 00:39:55 +02:00
|
|
|
rev: 1.18.0
|
2022-04-24 15:51:25 +02:00
|
|
|
hooks:
|
|
|
|
- id: django-upgrade
|
2022-09-24 16:52:44 +02:00
|
|
|
args: [--target-version, "4.1"]
|
2023-03-25 20:01:14 +01:00
|
|
|
- repo: https://github.com/psf/black
|
2024-04-30 00:57:10 +02:00
|
|
|
rev: 24.4.2
|
2023-03-25 20:01:14 +01:00
|
|
|
hooks:
|
|
|
|
- id: black
|
|
|
|
args: [--target-version, py311]
|
2022-04-24 15:51:25 +02:00
|
|
|
- repo: https://github.com/rtts/djhtml
|
2023-03-25 20:01:14 +01:00
|
|
|
rev: 3.0.6
|
2022-04-24 15:51:25 +02:00
|
|
|
hooks:
|
|
|
|
- id: djhtml
|
2023-07-04 09:56:38 +02:00
|
|
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
2024-06-04 00:39:55 +02:00
|
|
|
rev: v0.4.7
|
2022-04-24 15:51:25 +02:00
|
|
|
hooks:
|
2023-03-25 20:01:14 +01:00
|
|
|
- id: ruff
|
|
|
|
args: [--fix]
|
2022-04-24 15:51:25 +02:00
|
|
|
- repo: https://github.com/pre-commit/mirrors-prettier
|
2023-12-25 22:08:20 +01:00
|
|
|
rev: v4.0.0-alpha.8
|
2022-04-24 15:51:25 +02:00
|
|
|
hooks:
|
|
|
|
- id: prettier
|
|
|
|
types_or: [javascript, css]
|
|
|
|
- repo: https://github.com/pre-commit/mirrors-eslint
|
2024-06-04 00:39:55 +02:00
|
|
|
rev: v9.4.0
|
2022-04-24 15:51:25 +02:00
|
|
|
hooks:
|
|
|
|
- id: eslint
|
|
|
|
args: [--fix]
|
|
|
|
types_or: [javascript, css]
|
|
|
|
additional_dependencies:
|
2024-01-20 09:42:54 +01:00
|
|
|
- eslint@8.56.0
|
2023-03-25 20:01:14 +01:00
|
|
|
- eslint-config-prettier@8.5.0
|
|
|
|
- repo: https://github.com/tox-dev/pyproject-fmt
|
2024-05-28 00:24:07 +02:00
|
|
|
rev: 2.1.3
|
2023-03-25 20:01:14 +01:00
|
|
|
hooks:
|
|
|
|
- id: pyproject-fmt
|
|
|
|
- repo: https://github.com/jazzband/pip-tools
|
2024-03-13 02:03:02 +01:00
|
|
|
rev: 7.4.1
|
2023-03-25 20:01:14 +01:00
|
|
|
hooks:
|
|
|
|
- id: pip-compile
|
|
|
|
name: pip-compile requirements.txt
|
2023-09-04 22:07:13 +02:00
|
|
|
args: [-q, --allow-unsafe, --no-strip-extras, requirements.in]
|
2023-03-25 20:01:14 +01:00
|
|
|
files: ^requirements\.(in|txt)$
|
|
|
|
- id: pip-compile
|
|
|
|
name: pip-compile constraints.txt
|
2023-07-17 22:22:36 +02:00
|
|
|
args: [-q, --allow-unsafe, --strip-extras, --output-file=constraints.txt, requirements.in]
|
2023-03-25 20:01:14 +01:00
|
|
|
files: ^requirements\.in|constraints\.txt$
|
|
|
|
- id: pip-compile
|
|
|
|
name: pip-compile requirements-dev.txt
|
2023-09-04 22:07:13 +02:00
|
|
|
args: [-q, --allow-unsafe, --no-strip-extras, requirements-dev.in]
|
2023-03-25 20:01:14 +01:00
|
|
|
files: ^requirements-dev\.(in|txt)$
|