mirror of
https://github.com/Crocmagnon/charasheet.git
synced 2024-11-05 06:13:55 +01:00
6191b1ca02
updates: - [github.com/astral-sh/ruff-pre-commit: v0.1.6 → v0.1.7](https://github.com/astral-sh/ruff-pre-commit/compare/v0.1.6...v0.1.7) - [github.com/pre-commit/mirrors-prettier: v3.1.0 → v4.0.0-alpha.4](https://github.com/pre-commit/mirrors-prettier/compare/v3.1.0...v4.0.0-alpha.4) - [github.com/pre-commit/mirrors-eslint: v8.54.0 → v8.55.0](https://github.com/pre-commit/mirrors-eslint/compare/v8.54.0...v8.55.0) - [github.com/tox-dev/pyproject-fmt: 1.5.1 → 1.5.3](https://github.com/tox-dev/pyproject-fmt/compare/1.5.1...1.5.3)
79 lines
2.3 KiB
YAML
79 lines
2.3 KiB
YAML
exclude: \.min\.(js|css)(\.map)?$|^\.idea/
|
|
ci:
|
|
skip: [pip-compile]
|
|
|
|
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.5.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
|
|
- id: check-executables-have-shebangs
|
|
- id: check-shebang-scripts-are-executable
|
|
- repo: https://github.com/adamchainz/django-upgrade
|
|
rev: 1.15.0
|
|
hooks:
|
|
- id: django-upgrade
|
|
args: [--target-version, "4.1"]
|
|
- repo: https://github.com/psf/black
|
|
rev: 23.11.0
|
|
hooks:
|
|
- id: black
|
|
args: [--target-version, py311]
|
|
- repo: https://github.com/rtts/djhtml
|
|
rev: 3.0.6
|
|
hooks:
|
|
- id: djhtml
|
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
rev: v0.1.7
|
|
hooks:
|
|
- id: ruff
|
|
args: [--fix]
|
|
- repo: https://github.com/pre-commit/mirrors-prettier
|
|
rev: v4.0.0-alpha.4
|
|
hooks:
|
|
- id: prettier
|
|
types_or: [javascript, css]
|
|
- repo: https://github.com/pre-commit/mirrors-eslint
|
|
rev: v8.55.0
|
|
hooks:
|
|
- id: eslint
|
|
args: [--fix]
|
|
types_or: [javascript, css]
|
|
additional_dependencies:
|
|
- eslint@8.36.0
|
|
- eslint-config-prettier@8.5.0
|
|
- repo: https://github.com/tox-dev/pyproject-fmt
|
|
rev: 1.5.3
|
|
hooks:
|
|
- id: pyproject-fmt
|
|
- repo: https://github.com/jazzband/pip-tools
|
|
rev: 7.3.0
|
|
hooks:
|
|
- id: pip-compile
|
|
name: pip-compile requirements.txt
|
|
args: [-q, --allow-unsafe, --no-strip-extras, requirements.in]
|
|
files: ^requirements\.(in|txt)$
|
|
- id: pip-compile
|
|
name: pip-compile constraints.txt
|
|
args: [-q, --allow-unsafe, --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, --no-strip-extras, requirements-dev.in]
|
|
files: ^requirements-dev\.(in|txt)$
|