Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 237 Bytes

no-implicit-buggy-globals.md

File metadata and controls

21 lines (14 loc) · 237 Bytes

No Implicit Buggy Globals

Rule Details

👎 Examples of incorrect code for this rule:

var foo = 1

👍 Examples of correct code for this rule:

;(function () {
  const foo = 1
})()

Version

4.3.2