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

I have the following code:var dateStr;dateStr = day + month + this.padStr(date.getDate()) + " " +date.getFullYear() + " " + this.padStr(date.getHours())+ ":" +...
5 Oct 8, 2011
3:13 pm

Merlin
harry152566
Send Email

I've been using JSLint for a bit now, and I have noticed that often there are error messages where I wonder why JSLint is complaining about it.. I'm wondering...
18 Sep 30, 2011
7:12 pm

paulcrowder1979
Send Email

It would be nice if there was an option to disable the "Use a named parameter" check. I have a large regular expression that I'm using to find an address in a...
9 Sep 22, 2011
11:09 pm

sandyhead25
Send Email

I've been working on a JS file for a week or so with frequent trips thru JSLint along the way. Today, I getting tons of errors that look like this: Problem at...
9 Sep 21, 2011
7:53 pm

Michael Mikowski
z_mikowski
Send Email

Hello I was wondering if it is possible to escape/disable jslint validation for a specific function inside a file like: function off() { /*jslint off*/ ... } ...
4 Sep 19, 2011
6:48 am

Jakob Kruse
thekrucible
Send Email

If a multi-line expression contains the ternary operator, the expected indentation level for subsequent lines has increased. http://pastebin.com/T2Prsp8s This...
2 Sep 18, 2011
4:32 pm

Xavier MONTILLET
xavierm02...
Send Email

The options have been revised to make their definitions more consistent. JSLint will now do the Good Parts by default. The options will now relax its rules,...
18 Sep 6, 2011
7:31 pm

Kent Davidson
kentdavidson
Send Email

Silicon Valley Codecamp is a free software development conference held at Foothill College in Los Altos, California. I will be presenting there again this...
1 Sep 6, 2011
5:35 pm

Douglas Crockford
douglascrock...
Send Email

First, thank you for your great validation tool. Demo-JavaScript: var test = function () { var letsHaveSomeFun = {}; for (var entry in letsHaveSomeFun) { ...
2 Sep 2, 2011
1:39 pm

Douglas Crockford
douglascrock...
Send Email

I'm generally a fan of the whitespace rules that JSLint enforces, but there's on exception I'd like to see implemented. When I build an HTML string in...
7 Aug 25, 2011
3:57 pm

sandyhead25
Send Email

Hello, JavaScript 1.8.5 introduces a new method of the Object constructor called Object.keys, which produces an array of the enumerable properties of a given...
4 Aug 25, 2011
3:36 pm

Ben White
benxwhite
Send Email

DC - Thanks for your ongoing efforts maintaining jslint. There's a conflict between the options specified in the call to JSLINT(), and the options specified in...
1 Aug 23, 2011
8:30 pm

cheesox
Send Email

I saw this posted in a previous message, but the thread ended because the provided code sample did not reproduce the bug. I was able to produce the following...
8 Aug 22, 2011
10:00 pm

Douglas Crockford
douglascrock...
Send Email

The last few versions [the last couple of days] of jslint have been complaining about a Strict violation for every reference to this in my scripts. Is there an...
6 Aug 17, 2011
8:49 am

Marcos Zanona
marcos.zanona
Send Email

var getGroupId = function (group) { /*jslint regexp:true*/ return group.name.replace(/<.+?>|\W/g, '').toLowerCase(); /*jslint regexp:false*/ }; This throws an...
2 Aug 16, 2011
4:45 pm

Douglas Crockford
douglascrock...
Send Email

This code fails because strict mode prohibits function declarations in conditional blocks like "switch" and "if" statements, but JSLint doesn't catch this....
2 Aug 16, 2011
4:39 pm

Douglas Crockford
douglascrock...
Send Email

I am having a problem with the latest version of JSLint. Environment: Windows XP Pro SP4; FF5.0; jslint.com Edition 2011-08-05 I am getting: Problem at line...
1 Aug 6, 2011
10:37 pm

Phil
druid_rpg
Send Email

I just grabbed the latest jslint (8/3/11) and suddenly its complaining that using "this" is a constructor is a strict violation. I searched around a bit but...
2 Aug 5, 2011
10:58 pm

Douglas Crockford
douglascrock...
Send Email

When I submit the following contrived snippet to JSLint, I get the error: Problem at line 4 character 12: Expected 'j' at column 9, not column 12. Here's the...
16 Aug 5, 2011
12:33 pm

R. Mark Volkmann
mark_volkmann
Send Email

Should I be able to run the latest version of jslint.js that is in GitHub using Rhino? I'm trying to run it like the following, but don't get any output when I...
1 Aug 4, 2011
2:19 am

Mark Volkmann
mark_volkmann
Send Email

I'm trying to use JSLint to check code that uses the Express module of Node.js. It uses the variable __dirname. Is there an option for JSLint that would allow...
6 Aug 3, 2011
11:33 pm

Martin Cooper
mfncooper
Send Email

Is there a reason why jslint doesn't approve of the CSS border-style value "groove"? It complains about a line like this: border-style: groove; -- R. Mark...
2 Aug 3, 2011
10:23 pm

Douglas Crockford
douglascrock...
Send Email

I use a specific indentation that is incompatible with jslint but I really love the "white" option, so I suggest this for people that is in the same situation....
1 Aug 2, 2011
12:25 am

bartman1c
Send Email

When running the lint using cscript.exe on Windows, is there a way to pass in options as a command argument to cscript? I hope so... and if so, how would this...
2 Jul 27, 2011
4:50 pm

cse_html_validator
cse_html_val...
Send Email

JSLint supports var statement indenting in a variety of ways (see fn1, fn2, and fn3). Would you consider adding support for the method as shown by fn4? For ...
1 Jul 26, 2011
1:03 am

Erik Eckhardt
vorpalmage
Send Email

JSLint does not give any warning about the following (repeating a var declaration in the global scope). var fn = function () { //something here }; var fn =...
1 Jul 26, 2011
12:55 am

Erik Eckhardt
vorpalmage
Send Email

Is anyone still using comma expressions in the control part of for statements? I think this is a bad practice, but JSLint currently tolerates it....
33 Jul 21, 2011
6:15 pm

Douglas Crockford
douglascrock...
Send Email

Hello, I come back again an a problem I don't understand well: I'm testing this function on jslint.com: function test(data, args) { "use strict"; var b = data;...
2 Jul 21, 2011
1:37 pm

Douglas Crockford
douglascrock...
Send Email

Hello ... @charset "UTF-8"; #djDojoPreloader { background: #fff url('../images/loading.gif') no-repeat center center; } ... But I get the error: /Error:/ ...
2 Jul 21, 2011
1:17 pm

Douglas Crockford
douglascrock...
Send Email

window.location.href = window.location.href; is a standard web programming technique to reload the page WITHOUT re-POSTing the form. But JSLint says "Weird...
1 Jul 20, 2011
1:45 pm

thefsb
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