Skip to content

Commit

Permalink
fix(@schematics/angular): remove trailing comma in karma conf
Browse files Browse the repository at this point in the history
We usually don't have trailing commas in the generated code of the CLI (and this one makes the linter/formatter angry).
  • Loading branch information
cexbrayat authored and clydin committed Nov 12, 2020
1 parent 2a1b6b1 commit 8e8a51c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ module.exports = function (config) {
reporters: [
{ type: 'html' },
{ type: 'text-summary' }
],
]
},
reporters: ['progress', 'kjhtml'],
port: 9876,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ module.exports = function (config) {
reporters: [
{ type: 'html' },
{ type: 'text-summary' }
],
]
},
reporters: ['progress', 'kjhtml'],
port: 9876,
Expand Down

0 comments on commit 8e8a51c

Please sign in to comment.