Skip to content

Commit

Permalink
fix(share-replay): Type information isn't needed.
Browse files Browse the repository at this point in the history
  • Loading branch information
cartant committed Feb 23, 2019
1 parent c16baef commit ba7ede4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/rules/rxjsNoSharereplayRule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ export class Rule extends Lint.Rules.TypedRule {
An optional object with an optional \`allowConfig\` property.
If \`allowConfig\` is \`true\`, calls to \`shareReplay\` are allowed if a
config object is passed - instead of separate parameters`,
requiresTypeInfo: true,
requiresTypeInfo: false,
ruleName: "rxjs-no-sharereplay",
type: "functionality",
typescriptOnly: true
typescriptOnly: false
};

public static FAILURE_STRING = "shareReplay is forbidden";
Expand Down

0 comments on commit ba7ede4

Please sign in to comment.