chore: fix eslint violations

Fix comma-dangle violations
This commit is contained in:
Nora 2019-11-15 21:03:12 -05:00
parent c03161dfe0
commit 1975481cb0
2 changed files with 5 additions and 4 deletions

View File

@ -12,7 +12,8 @@
"scripts": {
"test": "grunt",
"posttest": "npm run lint",
"lint": "eslint ."
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"engines": {
"node": ">=8"

View File

@ -37,7 +37,7 @@ describe('Models Define Type Tests', function() {
clientApp.model(RemoteModel, {dataSource: remoteDs});
sinon.assert.calledOnce(defineObjectTypeSpy.withArgs(
RemoteModel.modelName
RemoteModel.modelName,
));
});
@ -66,10 +66,10 @@ describe('Models Define Type Tests', function() {
clientApp.model(RemoteModel, {dataSource: remoteDs});
sinon.assert.calledOnce(defineObjectTypeSpy.withArgs(
RemoteModel.modelName
RemoteModel.modelName,
));
sinon.assert.calledOnce(defineObjectTypeSpy.withArgs(
ChildModel.modelName
ChildModel.modelName,
));
});
});