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

Classification: UNCLASSIFIED I cannot help but think this rule may be harmful. I understand the intention behind this rule and how that intention may apply to...
3 Mar 4, 2012
6:16 pm

Ben White
benxwhite
Send Email

Thanks for supporting JsLint. I really enjoy using it. Is this a new rule? I get this error now. Can someone please explain the reason behind the rule? Error: ...
9 Mar 3, 2012
4:30 pm

Martin Cooper
mfncooper
Send Email

I expect this is a common question, but searching for "this" isn't getting me anywhere. "use strict"; function foo() { var a = this; } var bar = function() { ...
2 Feb 28, 2012
5:17 pm

douglascrockford
douglascrock...
Send Email

I am posting here with some trepidation, and I am thoroughly expecting to be insulted by DC. Here goes anyway. "The Good Parts" Appendix A5 (Awful parts)...
14 Feb 24, 2012
5:37 pm

Tom Worster
thefsb
Send Email

It would be nice if the following predefined globals could be added to the 'browser&#39; array self top XDomainRequest and these to the 'standard&#39; array void ...
4 Feb 24, 2012
5:11 pm

Joshua Bell
inexorabletash
Send Email

Tolerate uncapitalized constructors checkbox and the associated newcap flag does not seem to be working. I get ... "should start with an uppercase letter."...
3 Feb 21, 2012
7:19 am

Phil
druid_rpg
Send Email

Given the following code: var obj = {}, ````test = function () { ````````'use strict'; ````````return true; ````}.bind(obj); JSLint returns the following...
7 Feb 19, 2012
9:02 pm

Jordan Harband
ljharb
Send Email

This code gives me an error, I'm not sure why: function charAt(sValue, index) { return sValue.charAt(index) - '0'; } Message: Problem at line 2 character 25:...
3 Feb 17, 2012
11:08 pm

junkernaught
Send Email

Hi, I approached a whitespace issue. I have a code that it's impossible to refactor so it's ok for jslint - I can resign from checking whitespace but I don't...
5 Feb 11, 2012
12:25 am

douglascrockford
douglascrock...
Send Email

Ah yes. Thanks Harry. Obviously the error is partly mine. The “Bad HTML string” error seems to be caused by an internal JSLint error on an earlier run. If...
6 Feb 3, 2012
8:48 pm

Jakob Kruse
thekrucible
Send Email

Hi If I run the following code (properly indented) through JSLint at jslint.com with all options cleared, it validates. If I run the exact same code through...
2 Feb 3, 2012
11:50 am

Merlin
harry152566
Send Email

JSLint wants CSS blocks to end in semicolons, like this: <style type="text/css"> #eid{color:navy} </style> It's perfectly OK to not have a semicolon in...
4 Feb 2, 2012
12:15 am

Rob Richardson
erobrich@...
Send Email

It seems JSLint cannot check an HTML document if there is an HTML comment at the beginning of the document. Can this be fixed or is there a way around it? For...
7 Feb 1, 2012
10:12 pm

Sean Kelly
seank_com
Send Email

The option.type has been renamed as option.confusion. The option.type will continue to work for a short time. JSLint's type inference is now looking at...
2 Jan 27, 2012
6:48 pm

douglascrockford
douglascrock...
Send Email

Good morning, Your problem seems to be your insistence on declaring a function inside a function call. This is much better (from a readability perspective): ...
7 Jan 23, 2012
4:09 pm

caerusx
Send Email

Hi I'm new to javascript, but I have a solid C/C++ background. One of reasons why I prefer C++ over C is because it stricter. I prefer to catch errors during...
3 Jan 23, 2012
4:00 pm

caerusx
Send Email

Hi There is some indentation strangeness. JSLint does not like properly indented text: /*global g */ /*jslint indent: 2 */ (function () { "use strict"; return...
4 Jan 23, 2012
8:57 am

caerusx
Send Email

Given the following example code: function test(x) { ~~~~'use strict'; ~~~~return x === 1 ? 'one' : ~~~~~~~~x === 2 ? 'two' : ~~~~~~~~~~~~x === 3 ? 'three&#39; : ...
8 Jan 18, 2012
8:57 pm

Marc Spoor
marc.spoor@...
Send Email

Dear Vendor, Please provide an update on ECCN for the product JSLint. Thanks, Sree OAI-sys, Application Development and Testing Tools Travelers Insurance. HPSM...
2 Jan 18, 2012
5:11 pm

douglascrockford
douglascrock...
Send Email

Porting this feature request over from Github issues: I don't know what your views are on modifying Object.prototype, but I'm sure you've heard all the...
5 Jan 7, 2012
8:53 am

Rob Richardson
erobrich@...
Send Email

Gentlemen, after setting JSLint loose on my code I find myself with some bugs corrected. However, as my project is set up in many separate script files, I have...
9 Jan 1, 2012
10:38 am

Toby Maxwell-Lyte
toby_maxwell...
Send Email

I have added a complexity measure to the function report. See http://en.wikipedia.org/wiki/Cyclomatic_complexity This is an experimental feature. I am not...
6 Dec 22, 2011
6:56 pm

douglascrockford
douglascrock...
Send Email

An unused argument in an argument list should not be reported as an 'unused variable' if there are more arguments in the argument list. It is not unused, it...
5 Dec 22, 2011
6:55 pm

Rob Richardson
erobrich@...
Send Email

Well all is in the title :) Thanks for your help -- Jérôme Despatis jerome@......
3 Dec 21, 2011
7:36 pm

sandyhead25
Send Email

CouchDB uses an attribute named _rev to identify document revisions. var revision = doc["_rev";]; gets me: ['_rev&#39;] is better written in dot notation. var...
2 Dec 19, 2011
4:59 pm

Michael S. Mikowski
z_mikowski
Send Email

JSLint now checks that the names of options in the /*jslint*/ directive are now spelled correctly. It used to ignore misspelled or unknown options....
1 Dec 9, 2011
6:11 pm

douglascrockford
douglascrock...
Send Email

I am no longer able to upgrade to JSLint to pick up bug fixes and new features because of these two rules: - "this" can't be used in named functions. I...
22 Dec 5, 2011
9:31 pm

Rob Richardson
erobrich@...
Send Email

I am attempting to write a automatic semicolon insertion mechanism into my custom fork of Frank Marcia's JavaScript port jsmin when I encountered some strange...
1 Dec 1, 2011
9:08 pm

sandyhead25
Send Email

Maybe I'm missing something. When I enable "Tolerate many var statements per function" I still get errors for failing to have just one var at the top of the...
2 Nov 19, 2011
9:27 am

Luke Page
page.luke...
Send Email

(I apologize for the multiple posts - I did not know I could send good old plain text) Are JSLint indentation rules documented anywhere? (in particular rules...
3 Nov 16, 2011
6:29 am

Doc Emmett Splendid
emmett.thesane
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