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

Hello, Line 1786 of fulljslint.js is part of an attempt to detect and validate the closing of an HTML comment: -->. It reads as: if (s[i + 2] !== '>') { ...
3 Nov 17, 2010
7:30 pm

Chris
altearius
Send Email

https://github.com/douglascrockford/JSLint...
2 Nov 15, 2010
9:51 pm

Dominic Mitchell
happygiraffe...
Send Email

Using JavaScript I am attempting to forcefully inject double quote characters into the parentheses of url fragments in CSS, so that url(jslint.com) becomes...
5 Nov 13, 2010
3:48 pm

pauanyu
Send Email

i have found a bug. when running the following code through JSLint, it gives me the error below. /*global define: false */ /*jslint newcap: true, onevar:...
2 Nov 11, 2010
5:47 pm

pauanyu
Send Email

The error is correct. Specifically there needs to be a space between the single quote character and the plus sign. /Jakob Fra: jslint_com@yahoogroups.com...
3 Nov 10, 2010
8:10 pm

Erik Eckhardt
vorpalmage
Send Email

I've combed the web for answers to these questions, but haven't found them ... even in the ES5 spec which surely contains the answers. In ES5 what is the...
7 Nov 9, 2010
5:18 pm

Morgaut Alexandre Lou...
morgaut_a
Send Email

I've read that in ES5, accessing the global object is a runtime error. Can someone explain what "accessing the global object" means? Does it mean that "this"...
1 Nov 4, 2010
2:01 pm

Mark Volkmann
mark_volkmann
Send Email

JSLint now accepts the "use strict" declaration. This is in anticipation of the next edition of ECMAScript. Strict mode will reject many problematic features...
7 Nov 3, 2010
5:15 pm

Joshua Bell
inexorabletash
Send Email

JSLint doesn't barf if the last case doesn't end in a break or return. For example JSLint believes this is ok: switch (somevar) { case 'a': // some code ...
4 Oct 29, 2010
9:55 pm

Cheney, Edward A SSG ...
sandyhead25
Send Email

JSLint highlights this as a problem: /* * My Library Descriptive Comment * some descriptive content here */ with a message about mixed tabs and spaces...
5 Oct 24, 2010
3:01 pm

Harry Whitfield
harry152566
Send Email

running jslint over some css which includes the svg element as a selector gives the warning: "Expected a tagName, and instead saw svg." a similar thing happens...
4 Oct 19, 2010
9:50 pm

Cheney, Edward A SSG ...
sandyhead25
Send Email

Hi there, Can you please explain why this is a "strict violation"? "use strict"; (function (window) { // ... }(this)); I've seen this as a common technique...
14 Oct 19, 2010
7:30 pm

Michael
newmaniese
Send Email

JSLint requires that no whitespace occurs between . and a property name. JSLint requires that no whitespace occurs before [ or ( when they are used for...
1 Oct 17, 2010
12:10 am

Douglas Crockford
douglascrock...
Send Email

Hello JSLinters, JSLint complains when a FOR IN loop has no IF statement wrapping its body to filter unwanted properties from prototype: var i, obj = {a: 1, b:...
2 Oct 15, 2010
6:57 pm

pauanyu
Send Email

Anyone care to share opinions on the JavaScript library Underscore.js at http://documentcloud.github.com/underscore/? It looks cool to me. I'm wondering if...
2 Oct 15, 2010
2:24 pm

abyssoft@...
abyssoft...
Send Email

Suppose I do the following things: - write a constructor function - set the prototype property of my constructor function to refer to another object - create...
2 Oct 13, 2010
8:50 am

pauanyu
Send Email

Hi, I've got a suggestion for a small addition. This is directly taken from using the feed validator at http://feedvalidator.org/. With that service, you...
2 Oct 12, 2010
8:26 pm

Rob Richardson
erobrich@...
Send Email

Two small issues popped up recently in my code that would probably be worth taking a look at: 1. `last-child` isn't recognized as a pseudoclass. Adding it to...
9 Oct 12, 2010
4:41 pm

Cheney, Edward A SSG ...
sandyhead25
Send Email

Added the few node.js globals to fulljslint.js, plus a little extra to generate a web page on port 8181 showing the lint results. ...
3 Oct 8, 2010
12:37 pm

Harry Whitfield
harry152566
Send Email

Hello, One piece of code which jslint fails on is something like the following switch(a) { case 2: return "case 2"; case 3: if (b) { return "case 3b"; } else {...
4 Oct 7, 2010
12:29 pm

Luke Page
page.luke...
Send Email

I've been working hard to come up to speed on JavaScript (the right way) and I was delighted to find jslint and have been actively working on how I could ...
3 Sep 24, 2010
6:04 pm

seank_com
Send Email

JSLint is now doing more checking of strict mode code. Use of strict mode is highly recommended, but do not use strict mode unless you fully understand what it...
6 Sep 20, 2010
5:37 pm

Mark Volkmann
mark_volkmann
Send Email

Ignoring newcap setting. acting as always true....
9 Sep 18, 2010
7:00 am

Frederik Dohr
ace_noone
Send Email

JSLint now considers function statements to produce something that is more const than var. That means that you will get a warning for attempting change the...
1 Sep 15, 2010
12:06 am

douglas@...
douglascrock...
Send Email

I've been using JSLint for quite a while now. I think it is an invaluable tool! I'm sure many people that use JSLint have some things they wish could be...
9 Sep 14, 2010
7:03 am

Michael S. Mikowski
z_mikowski
Send Email

JSLint now requires that there be no whitespace or line break between a . and a property name. This has always been a good practice, and is now especially...
9 Sep 14, 2010
6:38 am

Michael S. Mikowski
z_mikowski
Send Email

JSLint now prohibits assignment to the arguments pseudoarray. The problem is that arguments is not a snapshot of the arguments that are bound to the...
4 Sep 13, 2010
9:12 am

douglas@...
douglascrock...
Send Email

Hi all! I've released an update to my jslint wrapper, jslint4java. This release is just a bug fix, plus an update to the latest version of JSLint. For full...
1 Sep 13, 2010
9:09 am

Dominic Mitchell
happygiraffe...
Send Email

JSLint doesn't report any error, because "foos" is considered global. Any suggestion to avoid that error? Thanks in advance, Alberto ... "use strict"; function...
6 Sep 10, 2010
6:44 pm

Rob Richardson
erobrich@...
Send Email

Group, I am trying to figure out why slice appears to be slower when executed upon a large string than merely pointing to a group of indexes. My presumption...
5 Sep 5, 2010
12:51 pm

sandyhead25
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