File size: 163 Bytes
6c20719
 
 
 
 
 
 
 
 
 
182cbb1
6c20719
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.PHONY: format lint

GIT_ROOT ?= $(shell git rev-parse --show-toplevel)

format:
	black .

lint:
	mypy .
	black . --check
	ruff check . --fix

test:
	pytest tests