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

Would anyone miss the Syntax Tree button?...
3 May 2, 2012
1:44 am

Dylon Edwards
deeclhtoa
Send Email

I realize the topic of unused arguments has been discussed before, but I wanted to raise it again with a suggested alternative behavior. When creating...
11 May 1, 2012
3:22 am

benquarmby
Send Email

Greetings! I'm Red Hat's JBDS QE and found a bug in the JSLint integration. The issue is filed here: https://issues.jboss.org/browse/JBDS-2062 Are you able to...
2 Apr 19, 2012
3:31 pm

sandyhead25
Send Email

Hi! I've created a plugin for resharper that highglights warnings from JSLint in js files. To test it, I've started creating small testfiles, and I've gotten...
5 Apr 10, 2012
6:30 pm

larserik78
Send Email

It seems the line counter is not counting the blank lines, at least that's what it seems in the first few lines when the code causing the error seemed...
16 Apr 4, 2012
5:51 pm

mariana.schiff
Send Email

I may want to switch to node.js from WHS, but my setup uses wsh.js. Is there an equivalent that works the same as wsh.js but is for node.js instead of WSH?...
2 Mar 30, 2012
9:08 pm

Sean Kelly
seank_com
Send Email

It seems when defining: /*jslint es5:true*/ a = { get b () { return 'b value'; } } JSLint requires that a setter is also declared, although if the intention is...
2 Mar 27, 2012
12:46 pm

douglascrockford
douglascrock...
Send Email

I would like to use the following statement so `this` is not DOMWindow anymore, although JSLint doesn't expect so see a `.`[dot] after (function(){...}) ... ...
2 Mar 26, 2012
6:30 pm

douglascrockford
douglascrock...
Send Email

I edit a greasemonkey script and I get this error now Error: Problem at line 373 character 19: Missing 'new'. GM_xmlhttpRequest({ Problem at line 415 character...
2 Mar 26, 2012
3:33 pm

douglascrockford
douglascrock...
Send Email

The library underscore.js (http://documentcloud.github.com/underscore/) exports a single variable: _ -- a single underscore. I've tried putting _ in my...
4 Mar 10, 2012
10:52 pm

Martin Cooper
mfncooper
Send Email

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