Skip to content

Commit

Permalink
Fix the linter (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinBeckwith committed Sep 21, 2018
1 parent f7b17ca commit 36f7838
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion packages/google-cloud-oslogin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@
"lint": "eslint src/ samples/ system-test/ 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",
"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' && npm run prettier"
},
"dependencies": {
"google-gax": "^0.20.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ class OsLoginServiceClient {
'importSshPublicKey',
'updateSshPublicKey',
];
for (let methodName of osLoginServiceStubMethods) {
for (const methodName of osLoginServiceStubMethods) {
this._innerApiCalls[methodName] = gax.createApiCall(
osLoginServiceStub.then(
stub =>
Expand Down

0 comments on commit 36f7838

Please sign in to comment.