Skip to content

Commit 64583ba

Browse files
alan-agius4alexeagle
authored andcommitted
refactor(@angular/cli): move project name being linted logic to builder
1 parent 5571d09 commit 64583ba

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

packages/angular/cli/commands/lint-impl.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
* Use of this source code is governed by an MIT-style license that can be
66
* found in the LICENSE file at https://angular.io/license
77
*/
8-
import { TargetSpecifier } from '@angular-devkit/architect';
98
import { ArchitectCommand, ArchitectCommandOptions } from '../models/architect-command';
109
import { Arguments } from '../models/interface';
1110
import { Schema as LintCommandSchema } from './lint';
@@ -14,12 +13,6 @@ export class LintCommand extends ArchitectCommand<LintCommandSchema> {
1413
public readonly target = 'lint';
1514
public readonly multiTarget = true;
1615

17-
protected async runSingleTarget(targetSpec: TargetSpecifier, options: string[]) {
18-
this.logger.info(`Linting ${JSON.stringify(targetSpec.project)}...`);
19-
20-
return super.runSingleTarget(targetSpec, options);
21-
}
22-
2316
public async run(options: ArchitectCommandOptions & Arguments) {
2417
return this.runArchitectTarget(options);
2518
}

0 commit comments

Comments
 (0)