Skip to content

Commit c147f32

Browse files
rafaelss95tinayuangao
authored andcommitted
chore: remove noRxjsPatchImportsRule (#10765)
1 parent e60f5fc commit c147f32

File tree

3 files changed

+0
-63
lines changed

3 files changed

+0
-63
lines changed

CODING_STANDARDS.md

-15
Original file line numberDiff line numberDiff line change
@@ -126,21 +126,6 @@ class ConfigBuilder {
126126
}
127127
```
128128

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-
144129
#### Access modifiers
145130
* Omit the `public` keyword as it is the default behavior.
146131
* Use `private` when appropriate and possible, prefixing the name with an underscore.

tools/tslint-rules/noRxjsPatchImportsRule.ts

-44
This file was deleted.

tslint.json

-4
Original file line numberDiff line numberDiff line change
@@ -109,10 +109,6 @@
109109
true,
110110
"src/+(lib|cdk|material-experimental|cdk-experimental|demo-app)/**/!(*.spec).ts"
111111
],
112-
"no-rxjs-patch-imports": [
113-
true,
114-
"src/+(lib|cdk|material-experimental|cdk-experimental)/**/*.ts"
115-
],
116112
"missing-rollup-globals": [
117113
true,
118114
"./tools/package-tools/rollup-globals.ts",

0 commit comments

Comments
 (0)