mirror of
https://github.com/jazzband/django-eav2.git
synced 2026-03-16 14:30:24 +00:00
updates: - [github.com/astral-sh/ruff-pre-commit: v0.11.11 → v0.11.12](https://github.com/astral-sh/ruff-pre-commit/compare/v0.11.11...v0.11.12)
27 lines
681 B
YAML
27 lines
681 B
YAML
# See https://pre-commit.com for more information
|
|
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v5.0.0
|
|
hooks:
|
|
- id: trailing-whitespace
|
|
- id: end-of-file-fixer
|
|
- id: check-yaml
|
|
- id: check-added-large-files
|
|
- id: mixed-line-ending
|
|
|
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
# Ruff version.
|
|
rev: v0.11.12
|
|
hooks:
|
|
# Run the linter.
|
|
- id: ruff
|
|
args: [ --fix ]
|
|
# Run the formatter.
|
|
- id: ruff-format
|
|
|
|
- repo: https://github.com/remastr/pre-commit-django-check-migrations
|
|
rev: v0.1.0
|
|
hooks:
|
|
- id: check-migrations-created
|
|
args: [--manage-path=manage.py]
|
|
additional_dependencies: [django==4.1]
|