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

Messages

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

After working with JSLint for a while i got tired from copy pasting my JS code into jslint.com, so i searched google for a dreamweaver JSLint plugin. Did not...
14 Oct 23, 2009
12:20 am

martijnbeulens
Send Email

Hi, We have some custom objects that are injected into the DOM from a lower layer. In order to access these we have to do so using global references. E.g....
2 Oct 9, 2009
2:14 pm

Douglas Crockford
douglascrock...
Send Email

Just read a fascinating interview with the author of our favorite tool!It also has great interviews with other eminent programmers of our time (Eich, Bloch,...
1 Oct 9, 2009
12:46 pm

Arthur Blake
blakesys
Send Email

var foo = { get bar() {}, set bar(value) {} }; The above fails with the following errors: Problem at line 2 character 9: Expected ':' and instead saw 'bar'. ...
2 Oct 6, 2009
6:27 pm

Douglas Crockford
douglascrock...
Send Email

Code can become difficult to read if it goes on for too long without a line break. This most obviously becomes a problem as soon as it becomes necessary to...
9 Oct 4, 2009
3:11 am

Stefan Weiss
weiss@...
Send Email

Hi, When JSLinting there are several scenarios where we get the "Variable {a} was used before it was declared. " message. This usually occurs when we define...
9 Oct 2, 2009
6:10 pm

Toby Maxwell-Lyte
toby_maxwell...
Send Email

I'm sure this has been asked before, but I searched this forum and scanned the jslint docs without finding an explanation. What is the rationalle in flagging...
3 Oct 2, 2009
1:36 pm

pauanyu
Send Email

JSLint is now fussier about use of the ! operator. There are some cases that will cause it to complain Confusing use of '!'. It will complain if !'s operand is...
1 Sep 29, 2009
10:13 pm

Douglas Crockford
douglascrock...
Send Email

Hi. ... Out of curiosity: why? cheers, stefan...
2 Sep 29, 2009
10:07 pm

Douglas Crockford
douglascrock...
Send Email

OK, we use a product which embeds Rhino, version 1_5R5. I was looking at running jslint over the scripts written for this tool, however when I used the...
2 Sep 29, 2009
9:04 pm

Stefan Weiss
weiss@...
Send Email

Just found a nasty bug, in Adobe Spry Tabbed Panels: http://labs.adobe.com/technologies/spry/widgets/tabbedpanels/SpryTabbedPanels.js The bug is here: if...
5 Sep 29, 2009
8:35 pm

Douglas Crockford
douglascrock...
Send Email

I'm not an expert in JS coding, and this problems looks esoteric for me. "The body of a for in should be wrapped in an if statement to filter unwanted...
3 Sep 22, 2009
4:10 pm

qmaxa
Send Email

Hallo, I have a really really little bug to report. Using Rhino I have to explicitly write that I want to use the . in regular expressions (instead of leaving...
2 Sep 22, 2009
3:54 pm

Douglas Crockford
douglascrock...
Send Email

Hello, I have an example base64 encoding function. As messages in this group are sometimes displayed in a variable-width font, and that may make my question...
4 Sep 21, 2009
7:43 pm

Douglas Crockford
douglascrock...
Send Email

JSLint counts all of the occurrences of property names for its /*members*/ report. It does that by making an object with a property for each name that it sees....
1 Sep 20, 2009
1:27 pm

Douglas Crockford
douglascrock...
Send Email

There has been a problem with http://www.jslint.com/rhino/rhino.js for a while. It adds one to the reported line number returned from jslint. And also, it...
7 Sep 18, 2009
11:17 am

Douglas Crockford
douglascrock...
Send Email

... Not to go too far off-topic, but I think fans of JSLint would also appreciate FlymakeCSS, which is also fantastic, and very easy to set up for any...
1 Sep 13, 2009
8:46 pm

Noah Sussman
thefangmonster
Send Email

Would it be possible to get JSLint to warn if you call the escape() function? The bad behaviour of this function has caused me problems this morning. It...
4 Sep 13, 2009
7:08 am

pipwerks
Send Email

If a script is entered into JSLint.com[1] containing a destructuring assignment[2], JSLint gives a strange error message[3] that has little or nothing to do...
3 Sep 12, 2009
5:35 am

silver_7402
Send Email

I want to recheck some bits of older code against the everchanging good parts, and for I use rhino-jslint, I have to change the jslint-options-string again and...
1 Sep 10, 2009
11:06 am

christian.wirkus
christian.wi...
Send Email

/*jslint browser: true */ escape("xyz"); Error: Implied global: escape 2...
3 Sep 8, 2009
12:51 pm

christian.wirkus
christian.wi...
Send Email

var foo = [0,, 1,, 2,, 3]; There are times where you wish to leave particular indices of an array as undefined. The above fails with the following errors: ...
7 Sep 7, 2009
1:13 pm

pauanyu
Send Email

Every know and then I want to change a /*jslint*/ setting for a particular statement. After the statement I want to restore the setting to its previous state....
13 Sep 5, 2009
1:37 pm

Aseem Kishore
aseem.kishor...
Send Email

@charset "UTF-8"; div { content: counter(foo) "." attr(bar); } Three things: 1) content is only supposed to be used on the :before, ::before, :after, and...
1 Sep 2, 2009
10:14 pm

pauanyu
Send Email

Hi, This is a little off topic, but I'm looking to integrate unit testing into our continuous integration server. So far I've looked at RhinoUnit...
1 Sep 2, 2009
6:57 pm

Toby Maxwell-Lyte
toby_maxwell...
Send Email

A lot of libraries are written inside one big, anonymous wrapper function: (function () { // ... }()); As I understand from John Resig's post on "use strict"...
2 Sep 2, 2009
5:52 pm

douglascrockford
douglascrock...
Send Email

There are times where you absolutely must go against something JSLint is warning you about. Perhaps you need eval (rare, but it happens), or perhaps you have a...
5 Sep 1, 2009
7:33 am

woomla
Send Email

I have this line of code: new Something(); and JSLint gives me this in its report: Error: Problem at line 7 character 9: 'new' should not be used as a...
5 Aug 31, 2009
4:54 pm

Arthur Blake
blakesys
Send Email

@charset "UTF-8"; body { color: rgb(30, 144, 255); color: rgb(75%, 4%, 100%); } The above fails with the following errors: Problem at line 3 character 18:...
2 Aug 30, 2009
2:56 pm

douglascrockford
douglascrock...
Send Email

The following piece of code: var node = document.getElementById('foo'); delete node.parentNode.removeChild(node); Works fine, but JSLint is complaining: Error:...
5 Aug 29, 2009
3:08 pm

marcelduran
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