6 lines
96 B
Makefile
6 lines
96 B
Makefile
.PHONY: lint
|
|
|
|
lint:
|
|
shfmt -s -w $(shell shfmt -f .)
|
|
black $(shell find -type f -name "*.py")
|
|
|