Add and fix comma-dangle rules for *.js files

[MAILPOET-1829]
This commit is contained in:
Jan Jakeš
2019-02-20 13:36:05 +01:00
committed by M. Shull
parent 61ab593dcb
commit 5c92af4881
67 changed files with 940 additions and 938 deletions

View File

@@ -8,10 +8,10 @@ describe('Heading', function () {
var view;
beforeEach(function () {
var model = new Backbone.SuperModel({
subject: 'a test subject'
subject: 'a test subject',
});
view = new (HeadingComponent.HeadingView)({
model: model
model: model,
});
});
@@ -24,10 +24,10 @@ describe('Heading', function () {
beforeEach(function () {
model = new Backbone.SuperModel({
subject: 'a test subject',
preheader: 'a test preheader'
preheader: 'a test preheader',
});
view = new (HeadingComponent.HeadingView)({
model: model
model: model,
});
view.render();
});