File size: 113 Bytes
c210a6f
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
.PHONY: style format


style:
	ruff check --fix .
	ruff format .


quality:
	ruff check .
	ruff format --check .