mirror of
https://github.com/Crocmagnon/checkout.git
synced 2025-02-22 20:41:23 +01:00
![pre-commit-ci[bot]](/assets/img/avatar_default.png)
updates: - [github.com/adamchainz/django-upgrade: 1.22.2 → 1.23.1](https://github.com/adamchainz/django-upgrade/compare/1.22.2...1.23.1) - [github.com/astral-sh/ruff-pre-commit: v0.9.4 → v0.9.6](https://github.com/astral-sh/ruff-pre-commit/compare/v0.9.4...v0.9.6) - [github.com/pre-commit/mirrors-eslint: v9.19.0 → v9.20.0](https://github.com/pre-commit/mirrors-eslint/compare/v9.19.0...v9.20.0) - [github.com/astral-sh/uv-pre-commit: 0.5.26 → 0.5.29](https://github.com/astral-sh/uv-pre-commit/compare/0.5.26...0.5.29)
66 lines
1.7 KiB
YAML
66 lines
1.7 KiB
YAML
exclude: \.min\.(js|css)(\.map)?$|^\.idea/|/vendor/
|
|
|
|
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v5.0.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.23.1
|
|
hooks:
|
|
- id: django-upgrade
|
|
args: [--target-version, "4.1"]
|
|
- repo: https://github.com/psf/black
|
|
rev: 25.1.0
|
|
hooks:
|
|
- id: black
|
|
args: [--target-version, py311]
|
|
- repo: https://github.com/rtts/djhtml
|
|
rev: 3.0.7
|
|
hooks:
|
|
- id: djhtml
|
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
rev: v0.9.6
|
|
hooks:
|
|
- id: ruff
|
|
args: [--fix]
|
|
- repo: https://github.com/pre-commit/mirrors-prettier
|
|
rev: v4.0.0-alpha.8
|
|
hooks:
|
|
- id: prettier
|
|
types_or: [javascript, css]
|
|
- repo: https://github.com/pre-commit/mirrors-eslint
|
|
rev: v9.20.0
|
|
hooks:
|
|
- id: eslint
|
|
args: [--fix]
|
|
types_or: [javascript, css]
|
|
additional_dependencies:
|
|
- eslint@8.56.0
|
|
- eslint-config-prettier@8.5.0
|
|
- repo: https://github.com/tox-dev/pyproject-fmt
|
|
rev: v2.5.0
|
|
hooks:
|
|
- id: pyproject-fmt
|
|
- repo: https://github.com/astral-sh/uv-pre-commit
|
|
rev: 0.5.29
|
|
hooks:
|
|
- id: uv-lock
|