mirror of
https://github.com/Crocmagnon/cookiecutter-django.git
synced 2024-11-05 06:23:54 +01:00
92 lines
2.7 KiB
YAML
92 lines
2.7 KiB
YAML
exclude: \.min\.(js|css)(\.map)?$|^\.idea/
|
|
ci:
|
|
skip: [pip-compile]
|
|
|
|
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.4.0
|
|
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
|
|
- repo: https://github.com/asottile/pyupgrade
|
|
rev: v3.3.1
|
|
hooks:
|
|
- id: pyupgrade
|
|
args: [--py311-plus]
|
|
- repo: https://github.com/adamchainz/django-upgrade
|
|
rev: 1.12.0
|
|
hooks:
|
|
- id: django-upgrade
|
|
args: [--target-version, "4.1"]
|
|
- repo: https://github.com/PyCQA/isort
|
|
rev: 5.11.4
|
|
hooks:
|
|
- id: isort
|
|
args: [--profile, black]
|
|
- repo: https://github.com/psf/black
|
|
rev: 22.12.0
|
|
hooks:
|
|
- id: black
|
|
args: [--target-version, py311]
|
|
- repo: https://github.com/rtts/djhtml
|
|
rev: v1.5.2
|
|
hooks:
|
|
- id: djhtml
|
|
- repo: https://github.com/flakeheaven/flakeheaven
|
|
rev: 3.2.1
|
|
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.32.0
|
|
hooks:
|
|
- id: eslint
|
|
args: [--fix]
|
|
types_or: [javascript, css]
|
|
additional_dependencies:
|
|
- eslint@8.32.0
|
|
- eslint-config-prettier@8.5.0
|
|
- repo: https://github.com/jazzband/pip-tools
|
|
rev: 6.12.1
|
|
hooks:
|
|
- id: pip-compile
|
|
name: pip-compile requirements.txt
|
|
args: [-q, --allow-unsafe, --resolver=backtracking, --generate-hashes, requirements.in]
|
|
files: ^requirements\.(in|txt)$
|
|
- id: pip-compile
|
|
name: pip-compile constraints.txt
|
|
args: [-q, --allow-unsafe, --resolver=backtracking, --strip-extras, --output-file=constraints.txt, requirements.in]
|
|
files: ^requirements\.in|constraints\.txt$
|
|
- id: pip-compile
|
|
name: pip-compile requirements-dev.txt
|
|
args: [-q, --allow-unsafe, --resolver=backtracking, --generate-hashes, requirements-dev.in]
|
|
files: ^requirements-dev\.(in|txt)$
|