Avoid Finnish notation (no-finnish)
October 22, 2020 ยท View on GitHub
This rule prevents the use of Finnish notation.
Rule details
Examples of incorrect code for this rule:
const answer$ = of(42, 54);
Examples of correct code for this rule:
const answers = of(42, 54);
Options
This rule has no options.