18 строки
591 B
YAML
18 строки
591 B
YAML
default_stages: [pre-commit]
|
|
fail_fast: true
|
|
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v5.0.0
|
|
hooks:
|
|
- id: check-yaml
|
|
- id: end-of-file-fixer
|
|
- id: trailing-whitespace
|
|
# Python import sorting and formatting
|
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
# Ruff version. Check https://github.com/astral-sh/ruff-pre-commit#version-compatibility,
|
|
# for the latest ruff version supported by the hook.
|
|
rev: v0.12.12
|
|
hooks:
|
|
- id: ruff-check
|
|
args: [--fix, --exit-non-zero-on-fix]
|
|
- id: ruff-format |