Skip to content

Commit 12cf39d

Browse files
committed
Fix new lint failures due to rebase
1 parent 2032ae0 commit 12cf39d

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

src/lib/schematics/tree/index.ts

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
1-
import {chain, Rule, noop, Tree, SchematicContext} from '@angular-devkit/schematics';
2-
import {Schema} from './schema';
1+
/**
2+
* @license
3+
* Copyright Google LLC All Rights Reserved.
4+
*
5+
* Use of this source code is governed by an MIT-style license that can be
6+
* found in the LICENSE file at https://angular.io/license
7+
*/
8+
9+
import {chain, noop, Rule, Tree} from '@angular-devkit/schematics';
310
import {addModuleImportToModule, findModuleFromOptions} from '../utils/ast';
411
import {buildComponent} from '../utils/devkit-utils/component';
12+
import {Schema} from './schema';
513

614
/**
715
* Scaffolds a new tree component.

src/lib/schematics/tree/schema.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/**
2+
* @license
3+
* Copyright Google LLC All Rights Reserved.
4+
*
5+
* Use of this source code is governed by an MIT-style license that can be
6+
* found in the LICENSE file at https://angular.io/license
7+
*/
8+
19
import {Schema as ComponentSchema} from '@schematics/angular/component/schema';
210

311
export interface Schema extends ComponentSchema {}

0 commit comments

Comments
 (0)