File tree 3 files changed +0
-63
lines changed
3 files changed +0
-63
lines changed Original file line number Diff line number Diff line change @@ -126,21 +126,6 @@ class ConfigBuilder {
126
126
}
127
127
```
128
128
129
- #### RxJS
130
- When dealing with RxJS operators, import the pipeable operator (e.g.
131
- ` import {map} from 'rxjs/operators/map' ` ), as opposed to using the "patch" imports which pollute the
132
- user's global Observable object (e.g. ` import 'rxjs/add/operator/map' ` ):
133
-
134
- ``` ts
135
- // NO
136
- import ' rxjs/add/operator/map' ;
137
- someObservable .map (... ).subscribe (... );
138
-
139
- // YES
140
- import {map } from ' rxjs/operators/map' ;
141
- someObservable .pipe (map (... )).subscribe (... );
142
- ```
143
-
144
129
#### Access modifiers
145
130
* Omit the ` public ` keyword as it is the default behavior.
146
131
* Use ` private ` when appropriate and possible, prefixing the name with an underscore.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 109
109
true ,
110
110
" src/+(lib|cdk|material-experimental|cdk-experimental|demo-app)/**/!(*.spec).ts"
111
111
],
112
- "no-rxjs-patch-imports" : [
113
- true ,
114
- " src/+(lib|cdk|material-experimental|cdk-experimental)/**/*.ts"
115
- ],
116
112
"missing-rollup-globals" : [
117
113
true ,
118
114
" ./tools/package-tools/rollup-globals.ts" ,
You can’t perform that action at this time.
0 commit comments