I am currently configuring JS Lint for Visual Studio Code and I keep on getting this strange warning telling me that the global window setting is a "bad option" like so:
My JSLint comment is as follows:
/*global window: true */
No space between the * and g , and yet it shows me the warning anyways.
How can I fix this?
The list of globals is just a list. There's no : true
involved.
/*global window*/