File tree Expand file tree Collapse file tree 3 files changed +54
-36
lines changed Expand file tree Collapse file tree 3 files changed +54
-36
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "extends" : " ../../.eslintrc.json" ,
3
- "ignorePatterns" : [" !**/*" ],
4
- "overrides" : [
5
- {
6
- "files" : [" *.ts" ],
7
- "parserOptions" : {
8
- "project" : [" src/ng-kit-demo/tsconfig.app.json" , " src/ng-kit-demo/tsconfig.spec.json" ],
9
- "createDefaultProgram" : true
10
- },
11
- "rules" : {}
12
- },
13
- {
14
- "files" : [" *.html" ],
15
- "rules" : {}
16
- }
17
- ]
2
+ "extends" : " ../../.eslintrc.json" ,
3
+ "ignorePatterns" : [
4
+ " !**/*"
5
+ ],
6
+ "overrides" : [
7
+ {
8
+ "files" : [
9
+ " *.ts"
10
+ ],
11
+ "parserOptions" : {
12
+ "project" : [
13
+ " tsconfig.app.json" ,
14
+ " tsconfig.spec.json"
15
+ ],
16
+ "createDefaultProgram" : true
17
+ },
18
+ "rules" : {}
19
+ },
20
+ {
21
+ "files" : [
22
+ " *.html"
23
+ ],
24
+ "rules" : {}
25
+ }
26
+ ]
18
27
}
Original file line number Diff line number Diff line change @@ -2,10 +2,10 @@ import { Component } from '@angular/core';
2
2
import { AlertComponent } from '@js-smart/ng-kit' ;
3
3
4
4
@Component ( {
5
- selector : 'ng-kit-alert-demo' ,
6
- imports : [ AlertComponent ] ,
7
- templateUrl : './alert-demo.component.html' ,
8
- styles : [ `` ]
5
+ selector : 'ng-kit-alert-demo' ,
6
+ imports : [ AlertComponent ] ,
7
+ templateUrl : './alert-demo.component.html' ,
8
+ styles : [ `` ] ,
9
9
} )
10
10
export class AlertDemoComponent {
11
11
dismissOnTimeout = false ;
Original file line number Diff line number Diff line change 1
1
{
2
- "extends" : " ../../.eslintrc.json" ,
3
- "ignorePatterns" : [" !**/*" ],
4
- "overrides" : [
5
- {
6
- "files" : [" *.ts" ],
7
- "parserOptions" : {
8
- "project" : [" src/ng-kit/tsconfig.lib.json" , " src/ng-kit/tsconfig.spec.json" ],
9
- "createDefaultProgram" : true
10
- },
11
- "rules" : {}
12
- },
13
- {
14
- "files" : [" *.html" ],
15
- "rules" : {}
16
- }
17
- ]
2
+ "extends" : " ../../.eslintrc.json" ,
3
+ "ignorePatterns" : [
4
+ " !**/*"
5
+ ],
6
+ "overrides" : [
7
+ {
8
+ "files" : [
9
+ " *.ts"
10
+ ],
11
+ "parserOptions" : {
12
+ "project" : [
13
+ " tsconfig.lib.json" ,
14
+ " tsconfig.spec.json"
15
+ ],
16
+ "createDefaultProgram" : true
17
+ },
18
+ "rules" : {}
19
+ },
20
+ {
21
+ "files" : [
22
+ " *.html"
23
+ ],
24
+ "rules" : {}
25
+ }
26
+ ]
18
27
}
You can’t perform that action at this time.
0 commit comments