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.

Further reading

  • Observables and Finnish Notation

Contents

  1. 1Rule details
  2. 2Options
  3. 3Further reading