14 lines
375 B
YAML
14 lines
375 B
YAML
repos:
|
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
rev: v0.13.0
|
|
hooks:
|
|
# Performs ruff check with safe fixes
|
|
- id: ruff
|
|
name: ruff
|
|
description: "Run 'ruff' for linting"
|
|
args: ["--fix"]
|
|
# Performs ruff format
|
|
- id: ruff-format
|
|
name: ruff-format
|
|
description: "Run 'ruff format' for formatting"
|