File size: 349 Bytes
d4c84c4 |
1 2 3 4 5 6 7 8 9 10 |
build: lint
uv pip compile pyproject.toml > requirements.txt
lint: fmt
git ls-files "*.py" --cached --others --exclude-standard | xargs uv run ruff check
fmt:
git ls-files "*.py" --cached --others --exclude-standard | xargs uv run isort
git ls-files "*.py" --cached --others --exclude-standard | xargs uv run ruff format --preview
|