- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
Latest commit
21 lines (15 loc) · 420 Bytes
/
Copy pathMakefile
File metadata and controls
21 lines (15 loc) · 420 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Generated by Agent B — Lint & Type Scripts
.PHONY: lint test format typecheck format-check clean
lint:
ruff check src/ tests/
format:
ruff format src/ tests/
format-check:
ruff format --check src/ tests/
typecheck:
pyright src/
test:
pytest -q
clean:
rm -rf build/ dist/ *.egg-info/ .pytest_cache/ __pycache__/
find . -type d -name __pycache__ -exec rm -rf {} + 2>/dev/null ||true