I am assigning a property to the global window object, but when I run eslint, I get this:
\"window\" is not defined
I see t
I found it on this page: http://eslint.org/docs/user-guide/configuring
In package.json, this works:
"eslintConfig": { "globals": { "window": true } }