Skip to content

Commit

Permalink
chore: clean up usage of prettier and eslint (#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinBeckwith authored Dec 5, 2018
1 parent b1a628d commit 678b889
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions packages/google-cloud-dataproc/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-cloud-dataproc/synth.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@
s.copy(templates)

subprocess.run(['npm', 'install'])
subprocess.run(['npm', 'run', 'prettier'])
subprocess.run(['npm', 'run', 'fix'])

0 comments on commit 678b889

Please sign in to comment.