mirror of
https://github.com/Crocmagnon/cookiecutter-django.git
synced 2024-11-05 14:33:55 +01:00
72 lines
1.9 KiB
YAML
72 lines
1.9 KiB
YAML
|
exclude: \.min\.(js|css)(\.map)?$|^\.idea/
|
||
|
repos:
|
||
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||
|
rev: v4.3.0
|
||
|
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
|
||
|
rev: v3.1.0
|
||
|
hooks:
|
||
|
- id: pyupgrade
|
||
|
args: [--py310-plus]
|
||
|
- repo: https://github.com/adamchainz/django-upgrade
|
||
|
rev: 1.11.0
|
||
|
hooks:
|
||
|
- id: django-upgrade
|
||
|
args: [--target-version, "4.0"]
|
||
|
- repo: https://github.com/timothycrosley/isort
|
||
|
rev: 5.10.1
|
||
|
hooks:
|
||
|
- id: isort
|
||
|
args: [--profile, black]
|
||
|
- repo: https://github.com/psf/black
|
||
|
rev: 22.10.0
|
||
|
hooks:
|
||
|
- id: black
|
||
|
args: [--target-version, py310]
|
||
|
- repo: https://github.com/rtts/djhtml
|
||
|
rev: v1.5.2
|
||
|
hooks:
|
||
|
- id: djhtml
|
||
|
- repo: https://github.com/flakeheaven/flakeheaven
|
||
|
rev: 3.2.0
|
||
|
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
|
||
|
rev: v8.26.0
|
||
|
hooks:
|
||
|
- id: eslint
|
||
|
args: [--fix]
|
||
|
types_or: [javascript, css]
|
||
|
additional_dependencies:
|
||
|
- eslint@^7.29.0
|
||
|
- eslint-config-prettier@^8.3.0
|