mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-19 02:48:30 +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.
17 lines
165 B
Makefile
17 lines
165 B
Makefile
.PHONY: install
|
|
install:
|
|
npm install client
|
|
|
|
.PHONY: build
|
|
build: install
|
|
npm run build
|
|
|
|
.PHONY: fmt
|
|
fmt:
|
|
npm run fmt
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -rf node_modules
|
|
|