fictivekin / eslint-config-fk

MIT License
0 stars 0 forks source link

Remove globals #9

Closed desandro closed 2 years ago

desandro commented 2 years ago
  "globals": {
    "__DEV__": false,
    "alert": false,
    "describe": false,
    "document": false,
    "it": false,
    "expect": false,
    "navigator": false,
    "FormData": false,
    "window": false
  }

I recommend removing all these and adding env: { browser: true }. 95% of our repos are browser projects, so this feels like the right choice.

dacohenii commented 2 years ago

Agreed: kill them all and add back individually as necessary on a case by case basis