mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-19 19:08:11 +08:00
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.
9 lines
110 B
Makefile
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
|