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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

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

What about "let" keyword? https://developer.mozilla.org/en/New_in_JavaScript_1.7 For instance, for (let i = 0; i < 10; i = i + 1) { // loop stuff with local...
4 Dec 23, 2008
11:19 pm

Dion Almaer
dion_almaer
Send Email

I made two changes to the way JSLint deals with HTML: 1. <!-- --> comments have been relaxed to allow the commenting out of HTML content. JSLint will complain...
1 Dec 19, 2008
11:24 pm

Douglas Crockford
douglascrock...
Send Email

Hi, With 'assume browser' turned on, JSLint rejects the following: if (n instanceof Document) { // 'Document&#39; is undefined // ... } Shouldn't the DOM classes...
4 Dec 17, 2008
8:21 pm

mnewton32@...
mnewton32
Send Email

Hi, JSLint forbids the following form: var a = var b = foo(); // Expected an identifier and instead saw 'var'. Is this intentional? It can occasionally be...
4 Dec 16, 2008
4:02 pm

Daniel Cassidy
mail@...
Send Email

When JSLint encounters a serious error, it stops. Is it possible to program in a error handling statement that breaks out of that block, outputs that lines x-y...
2 Dec 13, 2008
5:51 pm

Douglas Crockford
douglascrock...
Send Email

Maybe I am a bit out of topic, but the subject is the foundation of JSlint. :) Reading "Top Down Operator Precedence" paper [1] and trying to use his ...
1 Dec 12, 2008
3:04 pm

santini.alberto
Send Email

Hi, while checking a script and reducing a lot of flaws in it with the webjslint, the following message came up: Problem at line 130 character 34: 'escape&#39; is...
5 Dec 7, 2008
9:30 pm

michael.gollmick
michael.goll...
Send Email

JSLint now warns when HTML attributes are not separated by a space....
1 Nov 25, 2008
4:48 pm

Douglas Crockford
douglascrock...
Send Email

I have the following (useless) snippet: foo = 1; function bar() {} Ok... foo is implied global: I can resolve it with /*global foo */. Why is bar not an...
6 Nov 20, 2008
1:21 pm

santini.alberto
Send Email

JSLint now checks that member names in object literals are not duplicated....
1 Nov 20, 2008
1:51 am

Douglas Crockford
douglascrock...
Send Email

This line works: var y = (arr[2] || "").toLowerCase(); This one doesn't (see output below): (arr[2] || "").toLowerCase(); By itself, that expression isn't very...
3 Nov 8, 2008
10:21 am

crlender
Send Email

Hello, Here again your most devoted fan come with an improvement request :D There some HTML issues on the page http://www.jslint.com/ Very easy to fix, so...
7 Nov 3, 2008
8:17 am

Fred Lorrain
grumelo68
Send Email

The following example causes the JSLint parser to fail: var cache; function foo () { // ... return cache = calculate(); } Using extra parentheses works: return...
3 Oct 31, 2008
1:16 am

crlender
Send Email

Hi everyone, I would like to suggest that the JSLINT group moves to somewhere that's more accessible. Recently colleagues of mine have been unable to sign in...
4 Oct 29, 2008
2:51 pm

Daniel Cassidy
mail@...
Send Email

Hello. JSLint is a great tool, and we're using it a lot. Sometimes, though, we run across situations where we don't agree with JSLint's warnings or...
4 Oct 27, 2008
11:50 pm

crlender
Send Email

Any chance of an option for Apple Dashboard widget code? AFAIK the only extra addition to the global namespace is the 'widget&#39; object, but these objects and...
2 Oct 27, 2008
9:05 pm

Douglas Crockford
douglascrock...
Send Email

I'm trying to edit an existing codebase to make it pass JSLint verification so that it can be packed or minified safely. Mostly, my code requires small,...
4 Oct 26, 2008
10:44 pm

Douglas Crockford
douglascrock...
Send Email

Hi List, I was surprised to run JSLint on some of my code today only to see the following message: 'hasOwnProperty' is a really bad name. Stopping, unable to...
6 Oct 24, 2008
12:15 am

Daniel Cassidy
mail@...
Send Email

I added a onevar option. It allows only one var statement per function. Unused variables are easier to see in the function report. I removed support for .kon...
6 Oct 17, 2008
3:00 pm

Jakob Kruse
thekrucible
Send Email

Why does JSLint complain that "type is unnecessary" when it sees a script element with a type attribute in an html file? Is there any way to turn this...
7 Oct 17, 2008
1:01 pm

Andy Stevens
andystevens_...
Send Email

JSLint now provides a more useful warning when a break is missing a semicolon....
1 Oct 16, 2008
9:16 pm

Douglas Crockford
douglascrock...
Send Email

My usual report on JSLint itself: 1467: Unexpected space after '('. 1494: Unexpected space after '('. 2443: Expected 'warning&#39; to have an indentation of 16...
1 Oct 8, 2008
9:13 am

santini.alberto
Send Email

JSLint can now check CSS files. CSS files are required to have this as the first line: @charset "UTF-8"; JSLint's CSS checking is not yet complete, but it will...
11 Oct 7, 2008
8:10 pm

Jordan
ljharb
Send Email

Do you use http://developer.yahoo.com/yui/yuitest/ on JSLint, some other test methodology, or none? I have very little automated testing with JavaScript, and...
1 Oct 6, 2008
8:28 pm

Jacob Davenport
jpdavenportjr
Send Email

After tracking down a bug in 0.8.5.3 of the HTML Validator Firefox extension, I decided to try out JSLint on some of the code in it. It doesn't work because of...
4 Oct 5, 2008
3:10 pm

Douglas Crockford
douglascrock...
Send Email

The following CSS errors are reported, and I'm not sure why they are errors or what to do differently for them: Problem at line 420 character 5: Unexpected...
2 Sep 30, 2008
2:09 pm

Douglas Crockford
douglascrock...
Send Email

To avoid overload of my scripts and objects, I always put this kind of code in my libraries: if(!window.isLoaded_Overload) { var isLoaded_Overload = true; ...
6 Sep 26, 2008
2:41 pm

Fred Lorrain
grumelo68
Send Email

What means the Problem message ? Which rule I'm not respecting by using javascript: ? Problem at line 854 character 33: Script URL. peopleURL =...
5 Sep 25, 2008
9:16 am

Fred Lorrain
grumelo68
Send Email

escape & unescape do not do url encoding correctly and they are not in the official standard. JSLint no longer accepts them. If you want JSLint to pass crappy...
5 Sep 23, 2008
10:22 pm

Michael Newton
mnewton32
Send Email

In my external JS file, I use the following code: document.getElementById('element&#39;).innerHTML = object.property; I receive both of the follower errors from JS...
2 Sep 23, 2008
6:48 pm

Douglas Crockford
douglascrock...
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