File tree Expand file tree Collapse file tree 1 file changed +0
-7
lines changed
packages/angular/cli/commands Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Original file line number Diff line number Diff line change 5
5
* Use of this source code is governed by an MIT-style license that can be
6
6
* found in the LICENSE file at https://angular.io/license
7
7
*/
8
- import { TargetSpecifier } from '@angular-devkit/architect' ;
9
8
import { ArchitectCommand , ArchitectCommandOptions } from '../models/architect-command' ;
10
9
import { Arguments } from '../models/interface' ;
11
10
import { Schema as LintCommandSchema } from './lint' ;
@@ -14,12 +13,6 @@ export class LintCommand extends ArchitectCommand<LintCommandSchema> {
14
13
public readonly target = 'lint' ;
15
14
public readonly multiTarget = true ;
16
15
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
-
23
16
public async run ( options : ArchitectCommandOptions & Arguments ) {
24
17
return this . runArchitectTarget ( options ) ;
25
18
}
You can’t perform that action at this time.
0 commit comments