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).

(cherry picked from commit 8e8a51c)
  • Loading branch information
cexbrayat authored and clydin committed Nov 12, 2020
1 parent 4c6c016 commit 2e766c9
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 2e766c9

Please sign in to comment.