It's here: http://code.google.com/p/jslint-dashboard/ I don't expect to update it with every change to JSLint, but it will be updated every few months at...
This is something I still see often. However, since jslint is not capable of validating otherwise perfectly valid (and required) html (I am thinking...
Unfortunately many HTMl code are still generated in uppercase. Until every one is using XHTML or at least validated HTML, I suggest to keep the option....
Since some browsers (IE family) generate capital letter HTML tags when using contentEditable, I think that it could be unnecessarily restrictive to remove the...
The latest (very much simplified) version (8.0) of Widget Tester is at http://tinyurl.com/5unocx . This incorporates JSLint of 2009-03-28. Widget Tester...
In this example: var getObjLength = function(obj) { var objLength = 0, key = ''; for (key in obj) { objLength++; } return objLength; }; The key variable is not...
... It is correct because there is an error in the snippet: the body of a for in should be wrapped in an if statement to filter unwanted properties from the...
Ok, thank you very much. I should have read your JavaScript recommendations before asking. What a shame .hasOwnProperty() is not documented in many JavaScript...
Hi What’s the rationale behind issuing a line breaking error for code like this: var x = somefunc( param1, param2 ); But not for code like this: var x = { ...
... I agree. So I have changed the way JSLint looks at line breaking. It is now specifically concerned with infix operators, comma, and semicolon, and is more...
At http://tinyurl.com/5unocx there is a new version (8.0.4) of the Widget Tester Widget which can download and use the latest edition of JSLint from...
... I would gladly do that, but http://www.JSLint.com/jslint.js appears to be the WSH Edition of JSLint and not a straight minification of fulljslint.js....
Hi, I don't know what I have done differently, but last time I checked my document I didn't get this error. I have only made slight modifications since, so...
You could pobably get rid of those errors by checking the "assume a browser" box which will let JSLint know about the document object and stuff. Sent from my...
Hi, Yes you were right - I knew I'd missed something obvious (first day back after Easter Hols so my brain not full functioning ;) ) I still have Error: ...
... Pending resolution of this issue, I've fixed Widget Tester (now version 8.0.5) so that it downloads from http://www.JSLint.com/fulljslint.js no more than...
Escape is not a good idea, or so I've been told. Use encodeURIComponent instead. Or I think that's it. Not at a PC right now. Sent from my BlackBerry device on...
I'm happy to announce an update to the JSLint Multi widget. The new widget has been submitted to Yahoo Widget Gallery, but they update very slowly, so for now,...
Widget Tester Widget (version 8.0.7) with JSLint 2009-04-19 is now at http://tinyurl.com/5unocx . This version has an option to download and use the latest...
JSLint produces "Unexpected space" errors for the following: var myArray = [ 1 , 2 , 3 ]; Shouldn't having "Tolerate sloppy line breaking" on allow for this?...
I was code reviewing some code, which is similar to the structure below: var x = { "y" : "not test"}; var z = x.y = "test"; It gets several errors, and the...