💭 This rule requires type information.
This rule prevents the use of Finnish notation.
Examples of incorrect code for this rule:
const answer$ = of(42, 54);
Examples of correct code for this rule:
const answers = of(42, 54);
If you use Finnish notation in your project, you should avoid this rule. Or if you don't care if Finnish notation is used in your project, then you don't need this rule. However, keep in mind that inconsistent style can harm readability in a project.
Type checked lint rules are more powerful than traditional lint rules, but also require configuring type checked linting.