We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78d48be commit ecf0cccCopy full SHA for ecf0ccc
packages/@angular/cli/tasks/lint.ts
@@ -93,10 +93,10 @@ export default Task.extend({
93
.reduce((total, current) => {
94
const failures = current.failures
95
.filter(cf => !total.failures.some(ef => ef.equals(cf)));
96
- total.failures = total.failures.concat(...failures);
+ total.failures = total.failures.concat(failures);
97
98
if (current.fixes) {
99
- total.fixes = (total.fixes || []).concat(...current.fixes);
+ total.fixes = (total.fixes || []).concat(current.fixes);
100
}
101
102
if (current.errorCount !== undefined) {
0 commit comments