aboutsummaryrefslogtreecommitdiff
path: root/Justfile
blob: 76bebd4902fc742735d0193d7a70d51a864b8b9e (plain)
1
2
3
4
5
6
7
8
9
10
check: typecheck check_style

typecheck:
	pyright

check_style:
	black --check src

format:
	black src