File size: 179 Bytes
532e0c4
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
.PHONY: quality style

# Check that source code meets quality standards
quality:
	black --check --diff .
	ruff .

# Format source code automatically
style:
	black .
	ruff . --fix