Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

jslint_com · This group has moved to Google Plus.

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 583
  • Category: JavaScript
  • Founded: Mar 7, 2008
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

Advanced
Messages Help
  Newest  |  < Newer  |  Older >  |  Oldest
Topics Messages Latest Post

The ECMAScript standard reserves the following words: abstract boolean byte char double final float implements int interface long native package private...
4 May 28, 2009
10:45 pm

Michael Lorton
mlorton
Send Email

There was a good talk at Google about the language changes. <http://www.youtube.com/watch?v=Kq4FpMe6cRs>...
11 May 27, 2009
5:37 pm

christian.wirkus
christian.wi...
Send Email

JavascriptLint (or Firefox in maximum JS warning) is able to detect some errors that JsLint doesn't see. The first is the ability to detect return values: ...
2 May 27, 2009
1:29 pm

Douglas Crockford
douglascrock...
Send Email

Hi, I just ran some code in JSlint and got various messages (as expected): 1. Operators: I got: Use '!==' to compare with 'null' (or false) and Use '===' to...
3 May 25, 2009
11:25 pm

pauanyu
Send Email

There should be an option to allow var foo = "Lorem \ ipsum \ dolor"; because IE, Fx, Opera, and Safari support it, and ECMAScript 5 will allow it officially....
3 May 22, 2009
12:37 am

pauanyu
Send Email

IE7 won't execute this: <script type="application/javascript&quot;> alert(); </script> The other browsers don't have a problem with it, but IE chokes. It's okay...
5 May 21, 2009
6:44 pm

pauanyu
Send Email

I'm current testing JsLint on our source code, and it displays quite a lot of interesting warnings, even though I don't always agree with them. For example, I...
2 May 15, 2009
10:47 am

santini.alberto
Send Email

There is a Fifth Edition of the ECMAScript standard in the works. ...
2 May 12, 2009
1:50 am

pauanyu
Send Email

Try this: addEventListener("load", function (event) {}, false);...
2 May 10, 2009
4:51 pm

Douglas Crockford
douglascrock...
Send Email

Internet Explorer has a window.execScript() method that basically does the same thing as eval(), except that it always executes scripts in the global scope: ...
2 May 6, 2009
6:30 pm

kevin_hakanson
Send Email

Hello! I think really neat would be something that generates the jslint-options-string (/*jslint ... */). I am writing a small Javascript Library and had the...
2 May 6, 2009
12:57 am

Douglas Crockford
douglascrock...
Send Email

var global; (function () { var local; }()); Note that it lists local as Unused, but not global. I'm not sure if this is considered a bug or not, but it seems a...
10 May 5, 2009
5:52 pm

pauanyu
Send Email

Douglas, I appreciate your diligence in keeping the list up-to-date with the latest changes as you deploy them. Is there any chance that you could be persuaded...
1 May 3, 2009
8:37 am

Mike West
mikewest_y
Send Email

The /*jslint */ comment can now specify the indent....
1 May 1, 2009
9:36 pm

Douglas Crockford
douglascrock...
Send Email

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...
8 May 1, 2009
12:09 pm

Merlin
harry152566
Send Email

Run the following code in JSLint: <html> <head> <style type="text/css"> div { /**/ } </style> </head> </html> Note the (incorrect) errors that come up: ...
2 Apr 30, 2009
5:58 pm

Douglas Crockford
douglascrock...
Send Email

Are there any (Windows platform) javascript-aware editors (syntax highlighting) out there that auto-format for jslint (such as proper indenting, automatic...
3 Apr 30, 2009
4:15 pm

pauanyu
Send Email

Hi, In my opinion ”var z = x = ”test”;” is bad programming style which can mask several errors. I’m glad that JSLint will warn me if I accidentally...
1 Apr 28, 2009
10:59 am

Jakob Kruse
thekrucible
Send Email

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...
3 Apr 28, 2009
8:43 am

Stepan Reznikov
stepan.reznikov
Send Email

I added the JSON object to the list of objects that are provided by the standard, in anticipation of the next edition of the ECMAScript standard....
4 Apr 27, 2009
8:31 pm

Douglas Crockford
douglascrock...
Send Email

JSLint produces "Unexpected space" errors for the following: var myArray = [ 1 , 2 , 3 ]; Shouldn't having "Tolerate sloppy line breaking" on allow for this?...
2 Apr 25, 2009
9:43 pm

Douglas Crockford
douglascrock...
Send Email

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,...
1 Apr 21, 2009
9:21 pm

Jakob Kruse
thekrucible
Send Email

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...
4 Apr 20, 2009
2:52 pm

mnewton32@...
mnewton32
Send Email

I added an edition member to the JSLINT global function. It contains a string identifying the current edition....
1 Apr 19, 2009
8:59 pm

Douglas Crockford
douglascrock...
Send Email

In this example: var getObjLength = function(obj) { var objLength = 0, key = ''; for (key in obj) { objLength++; } return objLength; }; The key variable is not...
4 Apr 18, 2009
5:55 am

Douglas Crockford
douglascrock...
Send Email

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 = { ...
2 Apr 17, 2009
3:15 am

Douglas Crockford
douglascrock...
Send Email

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...
2 Apr 2, 2009
7:38 am

Fred Lorrain
grumelo68
Send Email

I have added a new immed option. When it is true, immediate function invocations must be wrapped in parens. So foo = function () {} (); // warning foo =...
1 Mar 24, 2009
6:42 pm

Douglas Crockford
douglascrock...
Send Email

I have seen a lot of confusion around use of immediate invocation of functions. I think JSLint can help if we can insist on some specific styling. I am...
7 Mar 24, 2009
5:35 pm

Frederick Staats
frederickstaats
Send Email

Douglas, Do you keep change logs and/or release notes between versions of JSLint? This would be nice to post next to the documentation link on...
3 Mar 24, 2009
5:25 pm

Frederick Staats
frederickstaats
Send Email
  Newest  |  < Newer  |  Older >  |  Oldest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help