18 lines
413 B
YAML
18 lines
413 B
YAML
|
|
repos:
|
||
|
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
||
|
|
# Ruff version.
|
||
|
|
rev: v0.11.2
|
||
|
|
hooks:
|
||
|
|
- id: ruff
|
||
|
|
name: ruff linter
|
||
|
|
args: [--fix]
|
||
|
|
- id: ruff-format
|
||
|
|
name: ruff formatter
|
||
|
|
- id: ruff
|
||
|
|
name: ruff sorter
|
||
|
|
args: [--select, I, --fix]
|
||
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||
|
|
rev: v5.0.0
|
||
|
|
hooks:
|
||
|
|
- id: check-yaml
|