Search the web
Sign In
New User? Sign Up
jslint_com · JSLint.com
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 68 - 99 of 993   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
68
JSLint's HTML analyzer now reports duplicate ids....
Douglas Crockford
douglascrock...
Offline Send Email
Jun 3, 2008
11:51 pm
69
... This is a MUST feature. Thank you....
Re Miya
remiya_ws
Offline Send Email
Jun 4, 2008
1:22 am
70
JSLint now allows statements to be broken before a ....
Douglas Crockford
douglascrock...
Offline Send Email
Jun 4, 2008
8:17 pm
71
I can't figure out how to set the options from the command line when using the WSH Command Line version. Thanks Alan...
Alan Green
alanggreen
Offline Send Email
Jun 5, 2008
5:54 am
72
If you look at wsh.js, you'll see if (!JSLINT(WScript.StdIn.ReadAll(), {passfail: true})) { The second argument to JSLINT is the options object....
Douglas Crockford
douglascrock...
Offline Send Email
Jun 5, 2008
1:35 pm
73
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...
Arthur Blake
blakesys
Offline Send Email
Jun 6, 2008
2:07 pm
74
Use this wsh wrapper to pass in arguments from the command line. The argument needs to be a single json object with no spaces. See the example below the code: ...
wleingang
Offline Send Email
Jun 10, 2008
12:14 am
75
http://svn.natalian.org/projects/html5/javascript.vim Any comments? Source code is linked from there. Some more Web dev IDE tips here: ...
Kai Hendry
dadraqsta
Offline Send Email
Jun 10, 2008
1:07 pm
76
... This is how I integrate JSLint into VIM using spidermonkey on Debian: function! RunJslint() let l:input=join(getbufline(bufnr('%'),1,'$'),"\n") cd...
Thomas Koch
cluj_de
Online Now Send Email
Jun 10, 2008
2:46 pm
77
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...
wleingang
Offline Send Email
Jun 16, 2008
4:15 pm
78
... Hi Will, I've another issue with already defined, which even appears in yui: if (typeof YAHOO == "undefined" || !YAHOO) { /** * The YAHOO global namespace...
Thomas Koch
cluj_de
Online Now Send Email
Jun 16, 2008
4:44 pm
79
... defined, the ... I had the same problem. I ended up replacing those namespace declarations in each individual file with /*global YAHOO*/ I agree that if...
wleingang
Offline Send Email
Jun 16, 2008
5:15 pm
80
... There are scope definition problems with respect to catch in some browsers. I recommend that you give each catch its own name (e1, e2) to be safe....
Douglas Crockford
douglascrock...
Offline Send Email
Jun 16, 2008
5:20 pm
81
... Unless I ... This is what I have done. Use different names for the events. However I have stuck into another problem: var test = function(){ ...
Re Miya
remiya_ws
Offline Send Email
Jun 16, 2008
6:30 pm
82
... Move the definition of pvt_fn before the pub_function that uses it....
Douglas Crockford
douglascrock...
Offline Send Email
Jun 16, 2008
6:42 pm
83
... That really makes sense. Up to now I have been putting the private fns at the end like this var test = function(){ this.pub_function = function(){ ...
Re Miya
remiya_ws
Offline Send Email
Jun 16, 2008
6:55 pm
84
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 ...
Chris
altearius
Offline Send Email
Jun 21, 2008
9:05 pm
87
... JSlint should now correctly identify fallthrough in nested switch statements. Thank you for the report....
Douglas Crockford
douglascrock...
Offline Send Email
Jun 21, 2008
11:31 pm
88
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...
Tim Breitkreutz
timbreitkreutz
Offline Send Email
Jun 25, 2008
7:44 pm
89
... the same as the web ... noticed (missing the ... The Rhino version at http://jslint.com/rhino/jslint.js uses the same core js file. You may want to fiddle...
Douglas Crockford
douglascrock...
Offline Send Email
Jun 25, 2008
7:48 pm
90
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?...
kevin_hakanson
Offline Send Email
Jun 30, 2008
1:12 am
91
... It was intentional. The Function constructor is a form of eval....
Douglas Crockford
douglascrock...
Offline Send Email
Jun 30, 2008
1:15 am
92
... Between the time I posted this and you replied, I read "JavaScript: The Good Parts" and now that makes sense. I had never thought of using new...
kevin_hakanson
Offline Send Email
Jun 30, 2008
3:48 pm
93
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...
kevin_hakanson
Offline Send Email
Jun 30, 2008
5:50 pm
94
The following code: <pre> function testEnvironment() { for (var i = 0; i < 10; i++) { (function (i) { console.log('Closure with i counting'); } (i)); } } ...
saj14saj
Offline Send Email
Jul 2, 2008
12:11 pm
95
I understand and agree with the warning about dot notation in general. My use case for requesting a configuration option to disable it is this: I am parsing an...
saj14saj
Offline Send Email
Jul 2, 2008
12:15 pm
96
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...
Andy Stevens
andystevens_...
Offline Send Email
Jul 2, 2008
5:16 pm
97
... Yes. ... JSLint has been around since 2001. But this group is a recent thing....
Douglas Crockford
douglascrock...
Offline Send Email
Jul 2, 2008
5:18 pm
98
... It has been fixed. Thank you for report it....
Douglas Crockford
douglascrock...
Offline Send Email
Jul 2, 2008
6:35 pm
99
... I have added a 'sub' option to JSLint. It turns off the check for suboptimal subscript notation....
Douglas Crockford
douglascrock...
Offline Send Email
Jul 4, 2008
1:25 pm
Messages 68 - 99 of 993   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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