Skip to content

Commit

Permalink
chore: clean up usage of prettier and eslint (#131)
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinBeckwith authored Dec 5, 2018
1 parent 7f9f0af commit 1d9cd24
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions packages/google-container/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@
"cover": "nyc --reporter=lcov mocha test/*.js && nyc report",
"samples-test": "cd samples/ && npm link ../ && npm test && cd ../",
"test-no-cover": "mocha test/*.js",
"lint": "eslint src/ samples/ system-test/ test/ smoke-test/",
"prettier": "prettier --write src/*.js src/*/*.js samples/*.js samples/*/*.js test/*.js test/*/*.js system-test/*.js system-test/*/*.js smoke-test/*.js",
"lint": "eslint '**/*.js'",
"docs": "jsdoc -c .jsdoc.js",
"system-test": "mocha system-test/*.js smoke-test/*.js --timeout 600000"
"system-test": "mocha system-test/*.js smoke-test/*.js --timeout 600000",
"fix": "eslint --fix '**/*.js'"
},
"dependencies": {
"google-gax": "^0.22.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/google-container/synth.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@

# Node.js specific cleanup
subprocess.run(['npm', 'install'])
subprocess.run(['npm', 'run', 'prettier'])
subprocess.run(['npm', 'run', 'fix'])

0 comments on commit 1d9cd24

Please sign in to comment.