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

@ -6,7 +6,7 @@ describe('Config', function () {
it('loads and stores configuration', function () {
var model;
ConfigComponent.setConfig({
testConfig: 'testValue'
testConfig: 'testValue',
});
model = ConfigComponent.getConfig();
expect(model.get('testConfig')).to.equal('testValue');