Skip to content

Commit 2e766c9

Browse files
cexbrayatclydin
authored andcommitted
fix(@schematics/angular): remove trailing comma in karma conf
We usually don't have trailing commas in the generated code of the CLI (and this one makes the linter/formatter angry). (cherry picked from commit 8e8a51c)
1 parent 4c6c016 commit 2e766c9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/schematics/angular/application/files/karma.conf.js.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ module.exports = function (config) {
2121
reporters: [
2222
{ type: 'html' },
2323
{ type: 'text-summary' }
24-
],
24+
]
2525
},
2626
reporters: ['progress', 'kjhtml'],
2727
port: 9876,

packages/schematics/angular/library/files/karma.conf.js.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ module.exports = function (config) {
2121
reporters: [
2222
{ type: 'html' },
2323
{ type: 'text-summary' }
24-
],
24+
]
2525
},
2626
reporters: ['progress', 'kjhtml'],
2727
port: 9876,

0 commit comments

Comments
 (0)