I thought I saw a thread/bug on this recently, but I can't seem to be able
to find it...
Should something like `// eslint ignore:line` work?
var atob = require('atob'); // eslint ignore:line
Currently I'm getting the following error:
```
10:4 error 'atob' is read only no-undef
```
And have to fix it by wrapping it in /*eslint-disable*/ block:
```
/*eslint-disable */
var atob = require('atob');
/*eslint-enable */
```
--
You received this message because you are subscribed to the Google Groups
"ESLint" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.