2021-12-27 22:57:05 +01:00
|
|
|
exclude: (\.min\.(js|css)(\.map)?$|/vendor/)
|
2022-09-28 00:02:03 +02:00
|
|
|
ci:
|
|
|
|
skip: [mypy]
|
2020-08-14 14:53:30 +02:00
|
|
|
repos:
|
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
2022-09-23 22:45:29 +02:00
|
|
|
rev: v4.3.0
|
2020-08-14 14:53:30 +02:00
|
|
|
hooks:
|
|
|
|
- id: check-ast
|
2021-12-19 20:40:51 +01:00
|
|
|
- id: check-json
|
2020-08-14 14:53:30 +02:00
|
|
|
- id: check-toml
|
2021-12-19 20:40:51 +01:00
|
|
|
- id: check-xml
|
2020-11-24 22:11:13 +01:00
|
|
|
- id: check-yaml
|
2021-02-06 18:07:51 +01:00
|
|
|
args: [--allow-multiple-documents]
|
2020-08-14 14:53:30 +02:00
|
|
|
- id: end-of-file-fixer
|
2021-12-19 20:40:51 +01:00
|
|
|
- id: check-merge-conflict
|
|
|
|
- id: debug-statements
|
|
|
|
- id: detect-private-key
|
2020-08-14 14:53:30 +02:00
|
|
|
- id: pretty-format-json
|
|
|
|
args:
|
|
|
|
- --autofix
|
|
|
|
- --no-sort-keys
|
|
|
|
- id: trailing-whitespace
|
|
|
|
args:
|
|
|
|
- --markdown-linebreak-ext=md
|
2022-10-04 02:13:28 +02:00
|
|
|
- repo: https://github.com/PyCQA/isort
|
2021-12-19 20:40:51 +01:00
|
|
|
rev: 5.10.1
|
2020-08-14 14:53:30 +02:00
|
|
|
hooks:
|
|
|
|
- id: isort
|
2022-09-23 22:45:29 +02:00
|
|
|
args:
|
|
|
|
- --profile=black
|
2020-08-14 14:53:30 +02:00
|
|
|
- repo: https://github.com/psf/black
|
2022-10-11 03:24:12 +02:00
|
|
|
rev: 22.10.0
|
2020-08-14 14:53:30 +02:00
|
|
|
hooks:
|
2021-12-19 20:40:51 +01:00
|
|
|
- id: black
|
2022-09-23 22:45:29 +02:00
|
|
|
args:
|
|
|
|
- -t
|
|
|
|
- py310
|
2021-12-19 20:40:51 +01:00
|
|
|
- repo: https://github.com/asottile/pyupgrade
|
2022-11-01 01:52:57 +01:00
|
|
|
rev: v3.2.0
|
2021-12-19 20:40:51 +01:00
|
|
|
hooks:
|
|
|
|
- id: pyupgrade
|
|
|
|
args:
|
|
|
|
- --py310-plus
|
2021-12-27 22:57:05 +01:00
|
|
|
- repo: https://github.com/adamchainz/django-upgrade
|
2022-11-01 01:52:57 +01:00
|
|
|
rev: 1.11.0
|
2021-12-27 22:57:05 +01:00
|
|
|
hooks:
|
|
|
|
- id: django-upgrade
|
2022-09-23 22:45:29 +02:00
|
|
|
args: [--target-version, "4.1"]
|
2021-12-27 22:57:05 +01:00
|
|
|
- repo: https://github.com/rtts/djhtml
|
2022-09-23 22:45:29 +02:00
|
|
|
rev: v1.5.2
|
2021-12-27 22:57:05 +01:00
|
|
|
hooks:
|
|
|
|
- id: djhtml
|
2022-02-24 20:38:43 +01:00
|
|
|
- repo: https://github.com/flakeheaven/flakeheaven
|
2022-11-01 01:52:57 +01:00
|
|
|
rev: 3.2.0
|
2021-12-19 20:40:51 +01:00
|
|
|
hooks:
|
2022-02-24 20:38:43 +01:00
|
|
|
- id: flakeheaven
|
2021-12-19 20:40:51 +01:00
|
|
|
additional_dependencies:
|
2021-12-29 10:40:48 +01:00
|
|
|
- flake8-annotations-complexity
|
2021-12-19 20:40:51 +01:00
|
|
|
- flake8-builtins
|
2021-12-29 10:40:48 +01:00
|
|
|
- flake8-bugbear
|
2021-12-19 20:40:51 +01:00
|
|
|
- flake8-comprehensions
|
|
|
|
- flake8-eradicate
|
2021-12-29 10:40:48 +01:00
|
|
|
- flake8-noqa
|
2021-12-27 22:57:05 +01:00
|
|
|
- flake8-pytest-style
|
2021-12-29 10:40:48 +01:00
|
|
|
- flake8-pyi
|
2021-12-29 14:54:21 +01:00
|
|
|
- wemake-python-styleguide
|
2021-12-27 22:57:05 +01:00
|
|
|
- repo: https://github.com/pre-commit/mirrors-prettier
|
2022-11-01 01:52:57 +01:00
|
|
|
rev: v3.0.0-alpha.4
|
2021-12-27 22:57:05 +01:00
|
|
|
hooks:
|
|
|
|
- id: prettier
|
|
|
|
types_or: [javascript, css]
|
|
|
|
- repo: https://github.com/pre-commit/mirrors-eslint
|
2022-11-01 01:52:57 +01:00
|
|
|
rev: v8.26.0
|
2021-12-27 22:57:05 +01:00
|
|
|
hooks:
|
|
|
|
- id: eslint
|
|
|
|
args: [--fix]
|
|
|
|
types_or: [javascript, css]
|
|
|
|
additional_dependencies:
|
2022-09-23 22:45:29 +02:00
|
|
|
- eslint
|
|
|
|
- eslint-config-prettier
|
2021-12-29 16:19:31 +01:00
|
|
|
- repo: local
|
|
|
|
hooks:
|
|
|
|
- id: mypy
|
|
|
|
name: mypy
|
|
|
|
entry: mypy
|
|
|
|
language: system
|
2021-12-29 16:25:56 +01:00
|
|
|
types_or: [python, pyi]
|