File size: 254 Bytes
022acf4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
ifeq ($(OS), Windows_NT)
# Styling
.PHONY: style
style:
	black . --line-length 150
	isort . -rc
	flake8 . --exit-zero
else
# Styling
.PHONY: style
style:
	python3 -m black . --line-length 150
	python3 -m isort . -rc
	python3 -m flake8 . --exit-zero
endif