Skip to content
This repository has been archived by the owner on Mar 7, 2019. It is now read-only.

6.1.0

Compare
Choose a tag to compare
@robertrossmann robertrossmann released this 28 Nov 10:30
· 239 commits to master since this release
77fc440

New rulesets

New rules

Rule changes

  • func-names: Relaxed, now requires function names only when no name can be inferred automatically from the code
  • newline-after-var: Has been disabled. The rule was enabled due to variable hoisting for var statements - vars should be placed on top of the function and separating these statements from the rest of the code made it better readable. Now that we have let and const, it's generally better to declare them as needed, then use them right away. Therefore, this rule made such code harder to read.