mirror of
https://github.com/obra/superpowers
synced 2026-07-10 12:44:29 +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
|