charasheet/.pre-commit-config.yaml

80 lines
2.4 KiB
YAML
Raw Normal View History

2022-10-28 22:16:23 +02:00
exclude: \.min\.(js|css)(\.map)?$|^\.idea/
ci:
skip: [pip-compile]
2022-10-28 22:16:23 +02:00
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
2022-10-28 22:16:23 +02:00
hooks:
- id: check-ast
- id: check-json
- id: check-toml
- id: check-xml
- id: check-yaml
2022-12-19 22:40:35 +01:00
args: [--allow-multiple-documents]
2022-10-28 22:16:23 +02:00
- id: end-of-file-fixer
- id: check-merge-conflict
2022-12-19 22:40:35 +01:00
- id: debug-statements
- id: detect-private-key
2022-10-28 22:16:23 +02:00
- id: pretty-format-json
args:
- --autofix
- --no-sort-keys
- id: trailing-whitespace
args:
- --markdown-linebreak-ext=md
2023-02-09 10:08:17 +01:00
- id: check-executables-have-shebangs
- id: check-shebang-scripts-are-executable
2022-10-28 22:16:23 +02:00
- repo: https://github.com/adamchainz/django-upgrade
rev: 1.13.0
2022-10-28 22:16:23 +02:00
hooks:
- id: django-upgrade
args: [--target-version, "4.1"]
2022-10-28 22:16:23 +02:00
- repo: https://github.com/psf/black
rev: 23.1.0
2022-10-28 22:16:23 +02:00
hooks:
- id: black
args: [--target-version, py311]
2022-10-28 22:16:23 +02:00
- repo: https://github.com/rtts/djhtml
rev: 3.0.6
2022-10-28 22:16:23 +02:00
hooks:
- id: djhtml
2023-01-29 10:38:41 +01:00
- repo: https://github.com/charliermarsh/ruff-pre-commit
2023-03-25 10:00:19 +01:00
rev: v0.0.259
2022-10-28 22:16:23 +02:00
hooks:
2023-01-29 10:38:41 +01:00
- id: ruff
args: [--fix]
2022-10-28 22:16:23 +02:00
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v3.0.0-alpha.6
2022-10-28 22:16:23 +02:00
hooks:
- id: prettier
types_or: [javascript, css]
- repo: https://github.com/pre-commit/mirrors-eslint
rev: v8.36.0
2022-10-28 22:16:23 +02:00
hooks:
- id: eslint
args: [--fix]
types_or: [javascript, css]
additional_dependencies:
2023-03-25 19:45:00 +01:00
- eslint@8.36.0
2022-12-10 01:52:08 +01:00
- eslint-config-prettier@8.5.0
2023-02-17 15:43:02 +01:00
- repo: https://github.com/tox-dev/pyproject-fmt
rev: 0.9.2
2023-02-17 15:43:02 +01:00
hooks:
- id: pyproject-fmt
2022-12-10 01:00:10 +01:00
- repo: https://github.com/jazzband/pip-tools
rev: 6.12.3
2022-12-10 01:00:10 +01:00
hooks:
- id: pip-compile
name: pip-compile requirements.txt
2023-03-14 09:35:04 +01:00
args: [-q, --allow-unsafe, --resolver=backtracking, requirements.in]
files: ^requirements\.(in|txt)$
2022-12-10 01:00:10 +01:00
- 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
2023-01-18 20:40:41 +01:00
name: pip-compile requirements-dev.txt
2023-03-14 09:35:04 +01:00
args: [-q, --allow-unsafe, --resolver=backtracking, requirements-dev.in]
files: ^requirements-dev\.(in|txt)$