File size: 157 Bytes
b5d3f34
 
 
 
 
 
 
 
 
 
 
 
 
 
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 .

test:
	pytest tests