Skip to content

Latest commit

 

History

History
25 lines (15 loc) · 447 Bytes

no-finnish.md

File metadata and controls

25 lines (15 loc) · 447 Bytes

Avoid Finnish notation (no-finnish)

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.

Further reading