mirror of
https://github.com/obra/superpowers.git
synced 2026-05-21 19:12:45 +00:00
12 lines
250 B
YAML
12 lines
250 B
YAML
|
|
pre-commit:
|
||
|
|
parallel: true
|
||
|
|
commands:
|
||
|
|
ruff-check:
|
||
|
|
glob: "*.py"
|
||
|
|
run: uv run ruff check {staged_files}
|
||
|
|
ruff-format:
|
||
|
|
glob: "*.py"
|
||
|
|
run: uv run ruff format --check {staged_files}
|
||
|
|
ty-check:
|
||
|
|
run: uv run ty check
|