manuels-scolaires/.pre-commit-config.yaml

78 lines
2.0 KiB
YAML
Raw Permalink Normal View History

2022-06-14 16:53:39 +02:00
exclude: (\.min\.(js|css)(\.map)?$|/vendor/)
2021-07-10 12:10:49 +02:00
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
2022-06-14 16:53:39 +02:00
rev: v4.1.0
2021-07-10 12:10:49 +02:00
hooks:
- id: check-ast
- id: check-json
- id: check-toml
- id: check-xml
- id: check-yaml
2022-06-14 16:53:39 +02:00
args: [--allow-multiple-documents]
2021-07-10 12:10:49 +02:00
- id: end-of-file-fixer
- id: check-merge-conflict
2022-06-14 16:53:39 +02:00
- id: debug-statements
- id: detect-private-key
2021-07-10 12:10:49 +02:00
- id: pretty-format-json
args:
- --autofix
- --no-sort-keys
- id: trailing-whitespace
args:
- --markdown-linebreak-ext=md
- repo: https://github.com/timothycrosley/isort
2022-06-14 16:53:39 +02:00
rev: 5.10.1
2021-07-10 12:10:49 +02:00
hooks:
- id: isort
2022-06-14 16:53:39 +02:00
args:
- --profile=black
2021-07-10 12:10:49 +02:00
- repo: https://github.com/psf/black
2022-06-14 16:53:39 +02:00
rev: 22.1.0
hooks:
- id: black
args:
- --target-version=py310
- repo: https://github.com/asottile/pyupgrade
rev: v2.31.0
hooks:
- id: pyupgrade
args:
- --py310-plus
- repo: https://github.com/adamchainz/django-upgrade
rev: 1.4.0
hooks:
- id: django-upgrade
args: [--target-version, "4.0"]
- repo: https://github.com/rtts/djhtml
rev: v1.5.0
hooks:
- id: djhtml
- repo: https://github.com/flakeheaven/flakeheaven
rev: 0.11.0
hooks:
- id: flakeheaven
additional_dependencies:
- flake8-annotations-complexity
- flake8-builtins
- flake8-bugbear
- flake8-comprehensions
- flake8-eradicate
- flake8-noqa
- flake8-pytest-style
- flake8-pyi
- wemake-python-styleguide
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v2.5.1
hooks:
- id: prettier
types_or: [javascript, css]
- repo: https://github.com/pre-commit/mirrors-eslint
rev: v8.9.0
2021-07-10 12:10:49 +02:00
hooks:
2022-06-14 16:53:39 +02:00
- id: eslint
args: [--fix]
types_or: [javascript, css]
additional_dependencies:
- eslint@^7.29.0
- eslint-config-prettier@^8.3.0