-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
23 lines (16 loc) · 718 Bytes
/
Copy pathMakefile
File metadata and controls
23 lines (16 loc) · 718 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
########################################################################################################################
# Project installation
########################################################################################################################
install:
uv sync
########################################################################################################################
# Quality checks
########################################################################################################################
format-check:
uv run ruff format --check game api
format-fix:
uv run ruff format api game
lint-fix:
uv run ruff check game api --fix
type-check:
uv run mypy game api