Skip to content

Commit 58a2997

Browse files
feat(strict): add additional rules to strict config
1 parent f1cf40a commit 58a2997

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/configs/strict.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,12 @@ export const createStrictConfig = (
99
rules: {
1010
'rxjs-x/no-async-subscribe': 'error',
1111
'rxjs-x/no-create': 'error',
12+
'rxjs-x/no-explicit-generics': 'error',
1213
'rxjs-x/no-exposed-subjects': 'error',
1314
'rxjs-x/no-ignored-default-value': 'error',
1415
'rxjs-x/no-ignored-error': 'error',
1516
'rxjs-x/no-ignored-notifier': 'error',
17+
'rxjs-x/no-ignored-observable': 'error',
1618
'rxjs-x/no-ignored-replay-buffer': 'error',
1719
'rxjs-x/no-ignored-takewhile-value': 'error',
1820
'rxjs-x/no-implicit-any-catch': ['error', { allowExplicitAny: false }],
@@ -21,6 +23,7 @@ export const createStrictConfig = (
2123
'rxjs-x/no-nested-subscribe': 'error',
2224
'rxjs-x/no-redundant-notify': 'error',
2325
'rxjs-x/no-sharereplay': 'error',
26+
'rxjs-x/no-subclass': 'error',
2427
'rxjs-x/no-subject-unsubscribe': 'error',
2528
'rxjs-x/no-topromise': 'error',
2629
'rxjs-x/no-unbound-methods': 'error',

0 commit comments

Comments
 (0)