File size: 236 Bytes
e5457b7
06c9fc9
 
 
 
 
 
 
 
 
 
e5457b7
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.PHONY: style format run

style:
	python -m black --line-length 119 .
	python -m isort .
	ruff check --fix .

quality:
	python -m black --check --line-length 119 .
	python -m isort --check-only .
	ruff check .

run:
	python -m src.main