Files
cellxgene/server/Makefile
Matt Weiden 176ea3bc91 Add auto-formatting to client and server modules
One thing that can make linting faster is auto-formatting. This commit
adds the yapf auto-formatting tool to the server module and uses
eslint's "fix" functionality to speed up the linting/formatting process.
2019-12-19 15:19:22 -08:00

9 lines
110 B
Makefile

.PHONY: fmt
fmt:
yapf -ir .
.PHONY: clean
clean:
rm -f app/web/templates/index.html
rm -rf app/web/static