Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So I'm using JSLint to try and detect errors. I turn some options off I don't like, but I don't see any way to enable being able to use the window global variable. Well, there is the Yahoo Widget option, but that's overkill.

What's the deal with using 'window', why would JSLint say that is causing errors?

share|improve this question
How do you use window? You could probably remove the dependency upon it, although bjoernwibben's solution below seems to do the job. – Guðmundur H Sep 10 '09 at 8:39
Well I was using it for window.setTimeout. I know I don't have to that and probably shouldn't, but in some places where I work with multiple windows in a Firefox extension I would need access to it. Thanks! – Bjorn Tipling Sep 10 '09 at 8:45

2 Answers

up vote 32 down vote accepted

Just make a comment in your script like that:

/*global window */

... your script goes here

This comment will tell JSLint that window is defined somewhere else.

See: http://www.JSLint.com/lint.html,

JSLint also recognizes a /*global */ comment that can indicate to JSLint that variables used in this file were defined in other files. The comment can contain a comma separated list of names. Each name can optionally be followed by a colon and either true or false, true indicated that the variable may be assigned to by this file, and false indicating that assignment is not allowed which is the default.

Oh, and I forgot to mention, that when you want window to be global by default without having to apply the comment to your script, you can add predef:["window"] to the object literal parameter inside the JSLINT function of your local jslint.js file.

BTW, I'm using predef:["$","window"] to have jQuery global as well.

Update:

This answer was correct back in 2009. As of now you should use the solution /*jslint browser: true*/ provided by Matt Clarkson.

share|improve this answer
Thanks that worked. – Bjorn Tipling Sep 10 '09 at 8:43
4  
Even though this work it's not the "right" answer. browser: true is. – Tom Roggero Nov 13 '12 at 20:20
/*jslint browser: true*/

Is the correct solution to this.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.