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

This worked great on my Linux dev box, and I thought others might be interested. This guy has employed spidermonkey to run jslint on Linux. Easily :) ...
17 Aug 3, 2009
5:52 am

Arthur Blake
blakesys
Send Email

I have added a new method to JSLINT which returns the material from the report in the form of a data structure. This should be useful to programs that want to...
2 Aug 1, 2009
8:59 am

Harry Whitfield
harry152566
Send Email

Hi all! I'd like to let you know that my jslint wrapper, jslint4java, has a new version out. The details are at: http://code.google.com/p/jslint4java/ The...
1 Jul 31, 2009
1:49 pm

dom@...
happygiraffe...
Send Email

This seems to be producing "Bad escapement error" results = str.replace(new RegExp('\\\$\\\$([a-z]+)', 'gim'), "{%=$1%}"); as you can see I am looking to...
3 Jul 29, 2009
11:42 pm

mars77
Send Email

JSLint doesn't support them. Is this by design, or...?...
9 Jul 27, 2009
12:40 am

pauanyu
Send Email

Take the following code sample. When I run it through JSLint with "Require Initial Caps for constructors" set (my default), I receive an "A constructor name...
2 Jul 24, 2009
10:25 pm

pauanyu
Send Email

Hi all! I'd like to let you know that my jslint wrapper, jslint4java, has a new version out. The details are at: http://code.google.com/p/jslint4java/ The...
1 Jul 24, 2009
11:44 am

dom@...
happygiraffe...
Send Email

var regexp = /[]]/; I understand the second error is JSLint telling me I need to escape the "]", and that's fine. The problem is the first error. It says I...
3 Jul 19, 2009
3:48 am

pauanyu
Send Email

I find the indentation requirements for the switch statement are not what I expect. Expected: switch (value) { case 1: case 2: return true; default: return...
2 Jul 13, 2009
3:49 pm

Douglas Crockford
douglascrock...
Send Email

With the newest version of JSLint I am having a frequent error on this code block: if (typeof console==="undefined") { console = { log: function() {}, dir:...
18 Jul 10, 2009
8:49 pm

pauanyu
Send Email

I understand that the ?: operator is supposed to be used to select between multiple values, rather than multiple actions. I ran into an interesting situation:...
7 Jul 9, 2009
5:41 pm

Michael Lorton
mlorton
Send Email

There is a common pattern in Ajax libraries now to keep a single object that contains the library's stuff. Since the library may be distributed over several...
3 Jul 9, 2009
3:02 am

pauanyu
Send Email

I have created a small launcher script for JavaScript Core (Safari's Nitro JavaScript Engine) It gives Mac users the ability to run JSLint from the command...
1 Jul 9, 2009
1:20 am

pulletsforever
Send Email

Title says it all: removeEventListener("click&quot;, function () {}, false);...
2 Jul 8, 2009
5:42 pm

Douglas Crockford
douglascrock...
Send Email

I always use the plusplus option, so I never noticed that when it is off there is no checking of the operand of ++. JSLint now complains if the operand is not...
5 Jul 4, 2009
11:54 pm

sandyhead25
Send Email

This may be slightly offtopic, but since the question relates to proper style and there are many JS experts in this group, I'm posing the question here. Can...
4 Jun 23, 2009
12:47 pm

christian.wirkus
christian.wi...
Send Email

I think JSLint should complain about "continue";, but have an option to turn it off, if you want. I don't see that listed as an option in the poll, however....
8 Jun 22, 2009
11:52 am

pauanyu
Send Email

That would kind of defeat the whole purpose of JSLint I think. When JSLint complains about something in your code it’s because there’s a good chance it...
1 Jun 22, 2009
6:31 am

Jakob Kruse
thekrucible
Send Email

test = function () {}; self.test = function () {}; window.test = function () {}; test(); JSLint sees the first three lines as different, even though they are...
13 Jun 21, 2009
6:40 am

pauanyu
Send Email

Enter your vote today! A new poll has been created for the jslint_com group: Should JSLint complain about continue statements? o Yes o No To vote, please...
1 Jun 21, 2009
2:07 am

jslint_com@yahoogroup...
Send Email

I have received requests to warn on continue statements. How do you feel about that?...
28 Jun 21, 2009
2:03 am

Randall Lee Spence
analogueweb
Send Email

Another small bug: JSLint doesn't like it if you break the /*jslint ... */ line after a colon. (It does accept line breaks after a comma.) /*jslint bitwise:...
1 Jun 20, 2009
6:06 pm

mbrrtt
Send Email

The JSLint.com page looks ok on the minority browsers, but it looks lousy on IE8. The vertical spacing is off, the fieldsets bleed, and the buttons are wrong. ...
2 Jun 19, 2009
1:47 am

Jordan
ljharb
Send Email

A RegExp object ”remembers” the last search. Try alerting hr.lastIndex. So you getting first true and then false is an indication that there are no matches...
4 Jun 18, 2009
2:25 pm

christian.wirkus
christian.wi...
Send Email

I've just encountered an odd behavior related to global variables. Is it possibly a bug? I'm keeping a local library of useful functions, all defined in one ...
2 Jun 17, 2009
7:19 pm

Douglas Crockford
douglascrock...
Send Email

Hi, this is not really a JSLint-Question, but I figured the smartest Javascript guys in this group. I wrote a RegExp that finds the hr-tag: var hr =...
1 Jun 17, 2009
2:58 pm

christian.wirkus
christian.wi...
Send Email

Would it be possible to have JSLint throw an error each time it sees the continue command? This could be an optional thing in The Good Parts option list. ...
1 Jun 16, 2009
5:37 pm

sandyhead25
Send Email

HTML Comments do not work the way a reasonable person would expect because they are overloaded onto meta declarations. The full powerful of this syntax is...
1 Jun 15, 2009
12:35 am

Douglas Crockford
douglascrock...
Send Email

I will be removing the /*global */ declarative comment. I am persuaded that it is best to explicitly use var to declare all global variables, even when...
34 Jun 12, 2009
1:44 pm

Douglas Crockford
douglascrock...
Send Email

Something I found useful was knowing if I added any new globals by accident. Right now the JSLint output looks like this if you use predefined globals: Global...
3 Jun 10, 2009
7:11 pm

Randall Lee Spence
analogueweb
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