File size: 202 Bytes
1151f26
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
lint:
	poetry run flake8 .
	poetry run black --line-length 79 . --check
	poetry run ruff .

format:
	poetry run isort .
	poetry run black --line-length 79 .
	poetry run ruff . --fix

.PHONY: lint format