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: 586
  • Category: JavaScript
  • Founded: Mar 7, 2008
  • Language: English
? 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.

Messages

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

Erik Meijer talking about the hazards and other interesting things. http://channel9.msdn.com/posts/Erik-Meijer-Functional-Programming-From-First-Principles...
1 Sep 11, 2012
6:13 pm

douglascrockford
douglascrock...
Send Email

Hi, I have a module which toggles two group of event handlers : // structure (function () { "use strict"; function a() {} function b() {} function c() {b(c);...
7 Sep 8, 2012
11:36 am

thomastraub2000
Send Email

The "node" option specifies that __dirname and __filename are valid options, yet if you don't use the "nomen" option it will still error. Shouldn't the "nomen"...
1 Aug 26, 2012
2:05 am

Dav Glass
marionhdrider
Send Email

I posted this question on stackoverflow before I got access to this group. ...
3 Aug 18, 2012
9:30 am

Felix E. Klee
feklee
Send Email

Some compressors do not touch the initial comments of a file in order to leave copyright, license etc. in place. I find that useful. However, some of my files...
6 Aug 8, 2012
10:54 pm

Tom Worster
thefsb
Send Email

In the case I repeat the same identifier on a catch block I receive an "'identifier' is already defined" error message. try { } catch (exception) { } ... try {...
2 Aug 8, 2012
1:27 pm

aceblchboy
Send Email

I see on other forums that people use jslint comments to change the settings for portions of a file, like /*jslint something: true */ ...
2 Jul 28, 2012
12:36 am

douglascrockford
douglascrock...
Send Email

I corrected a bug that was producing an incorrect warning on some regular expression literals....
4 Jul 27, 2012
11:30 pm

firstbakingbook
Send Email

While I don't mind the new rule, I have run into a case where the suggested replacement style code doesn't work. For example suppose we have a page that uses...
7 Jul 25, 2012
9:58 pm

s_lubowsky
Send Email

How do I add the exception to this "check" both globally or in a single line of code, for example: if (typeof var === 'undefined&#39;) { //many lines of code here ...
6 Jul 25, 2012
7:58 pm

Luke Page
page.luke...
Send Email

JSLint will now warn if you write typeof x === 'null' || typeof x === 'undefined&#39; instead of x === null || x === undefined...
10 Jul 23, 2012
6:09 pm

douglascrockford
douglascrock...
Send Email

Even if you allow multiple var declaration, JSLint stops when if finds a variable defined within a for (). The problem is not so much that it reports an issue...
2 Jul 23, 2012
5:17 pm

Joe Hansche
joeatrr
Send Email

Assuming that type is a MIME type and href is a URL, why is this a weird condition? matched = ((Boolean(~type.indexOf(".jpeg")) &&...
2 Jul 23, 2012
4:58 pm

douglascrockford
douglascrock...
Send Email

I suppose that there is some legacy browser support issue, but hey, native controls. http://jsfiddle.net/CVRc8/4/...
2 Jul 12, 2012
3:47 pm

douglascrockford
douglascrock...
Send Email

Classification: UNCLASSIFIED This following pattern is what passes in JSLint: var o = function () { ........"use strict"; ........var x = { ...
2 Jul 11, 2012
9:12 pm

douglascrockford
douglascrock...
Send Email

JSLint will now warn you if you leave TODO comments in your code. You can use option.todo to inhibit the warnings....
2 Jul 11, 2012
8:13 pm

Luke Page
page.luke...
Send Email

I had difficulty finding an up-to-date version of jslint.js that worked from the commandline and was easy to set up, so I wrote one myself. It's a short ruby...
2 Jul 6, 2012
1:48 pm

mattman_iflaf
Send Email

While I'm not sure anyone would consider mixing single and double quotes to be an error (or look like an error, or be more error prone), mixing them does...
6 Jul 3, 2012
9:34 pm

benquarmby
Send Email

Hi, I've just starting using jslint and it's been very helpful. Thanks for making it available. For better or worse it combines what I'd call "correctness...
4 Jun 30, 2012
4:50 pm

douglascrockford
douglascrock...
Send Email

Iterating over an array backwards like: /*jslint plusplus: true */ var ii, foo = []; for (ii = foo.length; --ii;) { foo.push("hello"); } produces the error...
4 Jun 27, 2012
4:00 am

douglascrockford
douglascrock...
Send Email

JSLint now warns when properties contain the substring 'Sync'. The use of that substring in Nodejs is to identify methods that can cause blockage. Such methods...
11 Jun 21, 2012
12:47 am

benquarmby
Send Email

I will be giving a talk about the theoretical foundations of JSLint. http://www.meetup.com/TechXploration/events/65087252/...
1 Jun 11, 2012
9:15 pm

douglascrockford
douglascrock...
Send Email

Hi, Not sure if anyone has requested this before, but a common cause of bugs and even more often, maintainence issues, arise because a programmer thinks of a...
7 Jun 1, 2012
2:22 am

Martin Cooper
mfncooper
Send Email

Love the new site layout! One request: Can you make the width of the site fixed at the width of the browser window? If a line of code is wider than the window,...
1 May 31, 2012
3:42 pm

josephtbrdly
Send Email

This code: /*jslint nomen: true, node: true */ "use strict"; var fs = require("fs"), path = require("path"); var JSLINT_PATH = path.join(__dirname,...
2 May 16, 2012
4:19 pm

douglascrockford
douglascrock...
Send Email

This code fails JSLint: ````var myScript = {}; ````(function () { ````````var THIS = this; ````````function defined(x) { ````````````return typeof x !==...
5 May 15, 2012
5:07 pm

Tom Worster
thefsb
Send Email

A new edition of the JSLint web page is available for testing at http://jslint.com/test/jslint.html It includes many UI improvements suggested by Jeff Coniff. ...
6 May 10, 2012
7:16 pm

Luke Page
page.luke...
Send Email

I was surprised to find that JSLint doesn't complain about the following code: function doCheck(arr1, arr2, checker) { var i, l; for (i = 0, l = arr1.length; i...
5 May 10, 2012
1:14 pm

Chris
altearius
Send Email

Google Chrome Extension http://code.google.com/p/script-cover/ <http://code.google.com/p/script-cover/> Some things to note: If the program needs data to...
1 May 10, 2012
12:11 pm

aceblchboy
Send Email

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

Dylon Edwards
deeclhtoa
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