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: 585
  • 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

Hi, can somebody recommend me some small pieces of javascript code, that I can study to improve my coding style? I already study YUI, but it is to large to...
2 Jul 9, 2008
8:51 pm

Klemen SlaviÄ
klemen.slavic
Send Email

First, thanks for making updates to JSLint based on this groups comments. It's easiest just to quote another source for this request: "The escape and unescape...
1 Jul 9, 2008
4:21 pm

kevin_hakanson
Send Email

The following code: <pre> function testEnvironment() { for (var i = 0; i < 10; i++) { (function (i) { console.log('Closure with i counting'); } (i)); } } ...
2 Jul 2, 2008
6:35 pm

Douglas Crockford
douglascrock...
Send Email

Hi, Would I be right in thinking the "download"; version of jslint.js linked to on http://www.jslint.com/rhino/index.html is a concatenation of...
2 Jul 2, 2008
5:18 pm

Douglas Crockford
douglascrock...
Send Email

I probably will get flamed for using eval to set global variables, but I needed it at the time. Using eval in IE didn't work as I needed, so I had to use the...
1 Jun 30, 2008
5:50 pm

kevin_hakanson
Send Email

I was looking through the fulljslint.js source and ran across the snippet below. Should the message say "... is evil"? Is this some sort of Freudian slip?...
3 Jun 30, 2008
3:48 pm

kevin_hakanson
Send Email

Hi, thanks for the great tool and book on Javascript! I was just wondering if the rhino version of the script is currently the same as the web version. It...
2 Jun 25, 2008
7:48 pm

Douglas Crockford
douglascrock...
Send Email

Hello, JSLint reports errors in switch statements caused by omitting a "break" statement. I recently encountered such an error that JSLint did not catch. It ...
2 Jun 21, 2008
11:31 pm

Douglas Crockford
douglascrock...
Send Email

Hi. Has anyone run into this before? try { this.var1 = "test"; }catch (e) {} try { this.var2 = "test"; }catch (e) {} On the second catch, JSLint thinks that e...
7 Jun 16, 2008
6:55 pm

Re Miya
remiya_ws
Send Email

http://svn.natalian.org/projects/html5/javascript.vim Any comments? Source code is linked from there. Some more Web dev IDE tips here: ...
2 Jun 10, 2008
2:46 pm

Thomas Koch
cluj_de
Send Email

I can't figure out how to set the options from the command line when using the WSH Command Line version. Thanks Alan...
3 Jun 10, 2008
12:14 am

wleingang
Send Email

I love JSLint! A few ideas... Would be nice if the "Implied global" error message was in a format that I could cut it and paste it right into the top of my .js...
1 Jun 6, 2008
2:07 pm

Arthur Blake
blakesys
Send Email

JSLint now allows statements to be broken before a ....
1 Jun 4, 2008
8:17 pm

Douglas Crockford
douglascrock...
Send Email

JSLint's HTML analyzer now reports duplicate ids....
2 Jun 4, 2008
1:22 am

Re Miya
remiya_ws
Send Email

The function report now includes urls that are found in html files....
1 Jun 1, 2008
6:22 am

Douglas Crockford
douglascrock...
Send Email

Hi, function myFunc() { var v1 = { option: true }; var v2 = v1.option = false; }; JSLint throws the following error messages for the above code snippet: Error:...
5 May 30, 2008
8:56 pm

ps_praveenkr
Send Email

Tabs are problematic largely due to a lack of standardization. They are unnecessary, but still in significant use. JSLint now treats a tab as equivalent to the...
1 May 29, 2008
1:58 pm

Douglas Crockford
douglascrock...
Send Email

JSLint does not handle tabs correctly. Mostly, this does not matter, but it does matter when checking indentation. Some text editors allow tab-stops to be...
4 May 28, 2008
8:10 pm

Merlin
harry152566
Send Email

JSLint now accepts an indent parameter that allows setting the number of spaces of indentation when checking strict whitespace. The default is 4. It can be...
2 May 25, 2008
9:28 am

Jakob Kruse
thekrucible
Send Email

Hello! A few -more or less- philosophical questions regarding strict whitespace option: A)  Comment: JSLint doesn't like comments within function arg...
2 May 24, 2008
9:02 pm

Douglas Crockford
douglascrock...
Send Email

Hi I would like to request for the indent level used/checked by jslint, when the whitespace option is turned on, to be made configurable, as an option. Reason:...
2 May 22, 2008
2:01 pm

mflanagan_swim
Send Email

Hi, I started today to explore jslint. My first problem was, to figure out, which jslint I actually need/want. There's jslint from Douglas Crockford which I've...
1 May 22, 2008
1:44 pm

Thomas Koch
cluj_de
Send Email

In jQuery there is the following code when throwing error in an Ajax call: function (XMLHttpRequest, textStatus, errorThrown) { // typically only one of...
3 May 21, 2008
4:28 am

Re Miya
remiya_ws
Send Email

JSLint now issues a warning if it sees the close script tag in a comment....
1 May 16, 2008
3:49 pm

Douglas Crockford
douglascrock...
Send Email

When immediately invoking a function literal, parens must wrap the expression when it is used in the statement position because of an ambiguity in the grammar...
1 May 12, 2008
4:54 pm

Douglas Crockford
douglascrock...
Send Email

JSLint will now providing a warning for code like this: function foo(a) { var i; for (i = 0; i < a.length; i += 1) { a[i].onclick = function (e) { alert(i); };...
3 May 11, 2008
1:10 pm

Douglas Crockford
douglascrock...
Send Email

When constructing a singleton in JS using an anonymous constructor, JSlint returns a "Weird construction" error. Here's the code: /*globals A*/ A = new...
2 May 11, 2008
1:07 pm

Douglas Crockford
douglascrock...
Send Email

Hello. In my javascript files I define, as first line, a namespace like var FOO = YAHOO.namespace("foo"); // alias for YAHOO.foo using Yahoo! User Interface...
3 Apr 29, 2008
9:38 am

santini.alberto
Send Email

I corrected an error in JSLint that created a scope around labeled statements. function a() { foo: for (var i = 0; false;) { } return i; } As a result, it used...
1 Apr 18, 2008
11:14 pm

Douglas Crockford
douglascrock...
Send Email

JSLint now rejects a string that starts with 'javascript:'. It previously rejected a string that contained 'javascript:'. Thanks to Timo....
2 Apr 21, 2008
3:03 pm

Julien R
julien_roy
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