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: 584
  • Category: JavaScript
  • Founded: Mar 7, 2008
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

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

I have found that JSLint complains about the forward slash in this: /=\' / but not in this: / =\'/ It seems if the first example is worthy of complaint then...
3 Jun 9, 2009
2:13 am

sandyhead25
Send Email

Jslint group, After long use of jslint as a web application, I just began using it with Rhino, which is apparently ignoring my /*jslint option1 option2 ...*/ ...
3 Jun 8, 2009
12:08 pm

jeddahbill
Send Email

Now, I fully understand the reasons behind this change, and I approve. However, I've noticed something interesting. If you select the "Assume a browser"...
5 Jun 7, 2009
10:22 am

pauanyu
Send Email

JSLint does not properly ignore HTML comments: <html> <!-- "' --> </html> Note that JSLint parses the data inside the comment, when it should be ignored....
1 Jun 7, 2009
2:22 am

pauanyu
Send Email

Arrays work really differently in JavaScript than in most other languages. If you do not understand those differences, you can be in for a world of hurt....
11 Jun 6, 2009
10:25 pm

pauanyu
Send Email

I've been using JSLint for several years. As a result, I've developed an habitual JavaScript coding style which conforms to its requirements, and my code...
2 Jun 5, 2009
3:30 pm

Michael Lorton
mlorton
Send Email

I think it would be great if the JSLint Yahoo! Widget had the clear, recommended, and good parts selectors found on jslint.com. It would save a bit of time and...
9 Jun 4, 2009
10:24 pm

edgauci
Send Email

First, could JsLint displays the number of errors and warnings, and can you add a way to configure the number of warnings ? The 50 warnings limit is really too...
6 Jun 4, 2009
8:47 pm

benxwhite
Send Email

I am curious why JSLint dislikes this: var foo = new function () { this.bar = 1; }(); Without the "new", "this" is bound to the global object. It is true that...
3 Jun 2, 2009
11:40 pm

pauanyu
Send Email

I'm trying to check if a variable is already defined and define if is not. If (Testvar === undefined) {   var Testvar = {}; } JsLint say that Testvar was used...
25 Jun 1, 2009
12:29 pm

sandyhead25
Send Email

var regexp = /\s+(?!.*[\=])/gm; I am a bit confused as to why JSLint doesn't like this. It doesn't seem to cause problems or throw exceptions in the browsers...
11 May 30, 2009
4:34 pm

Michael Lorton
mlorton
Send Email

I have been working with strict mode in ES5. It requires that there be a var declaration if a program unit creates a new global variable. Implied global...
3 May 29, 2009
6:55 am

pauanyu
Send Email

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
  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