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.
This commit is contained in:
Matt Weiden
2019-12-18 17:47:32 -08:00
parent cc0880560b
commit 176ea3bc91
5 changed files with 18 additions and 0 deletions

View File

@@ -54,6 +54,13 @@ build-for-server-dev: clean-server build-client
cp client/build/service-worker.js server/app/web/static/js/
# FORMATTING CODE
.PHOHY: fmt
fmt: fmt-client fmt-server
fmt-%:
cd $(*) && $(MAKE) fmt
# CREATING DISTRIBUTION RELEASE

View File

@@ -6,6 +6,10 @@ install:
build: install
npm run build
.PHONY: fmt
fmt:
npm run fmt
.PHONY: clean
clean:
rm -rf node_modules

View File

@@ -11,6 +11,7 @@
"clean": "rimraf build",
"dev": "npm run clean && webpack --config configuration/webpack/webpack.config.dev.js",
"e2e": "node node_modules/jest/bin/jest.js --verbose false --config __tests__/e2e/e2eJestConfig.json e2e/e2e.test.js",
"fmt": "eslint --fix src",
"lint": "eslint src",
"smoke-test": "start-server-and-test start-server-for-test :5000 e2e",
"start": "node server/development.js",

2
server/.style.yapf Normal file
View File

@@ -0,0 +1,2 @@
[style]
based_on_style = google

View File

@@ -1,3 +1,7 @@
.PHONY: fmt
fmt:
yapf -ir .
.PHONY: clean
clean:
rm -f app/web/templates/index.html