| Left: | ||
| Right: |
| OLD | NEW |
|---|---|
| 1 { | 1 { |
| 2 "extends": "eslint-config-eyeo", | 2 "extends": "eslint-config-eyeo", |
| 3 "root": true, | 3 "root": true, |
| 4 "env": { | 4 "env": { |
| 5 "browser": true, | 5 "browser": true, |
| 6 "webextensions": true | 6 "webextensions": true |
| 7 }, | 7 }, |
| 8 "globals": { | 8 "globals": { |
| 9 "exports": true, | 9 "exports": true, |
| 10 "ext": true, | 10 "ext": true, |
| 11 "module": true, | 11 "module": true, |
| 12 "require": true | 12 "require": true, |
| 13 "process": true, | |
| 14 "__dirname": true | |
|
hub
2018/08/22 16:13:56
also I'm wondering if this shouldn't go into a sub
Sebastian Noack
2018/08/22 18:16:38
Well, rather than whitelisting particular globals,
tlucas
2018/08/22 20:24:00
As a matter of fact, this was previously only nece
| |
| 13 } | 15 } |
| 14 } | 16 } |
| OLD | NEW |