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

Messages

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

https://gist.github.com/733715 { "ID3v1": { "title": "Michael Bolton \'&#92;' Said i lov", "artist": "Michael Bolton \'&#92;' Said i lov", "genre": "Blues" } } ...
3 Dec 8, 2010
8:44 pm

AJ ONeal
coolaj86
Send Email

I've always found, the fact that the validator's code fails to validate to be entertaining in strange and perverse way. And the fact that it is minified as a...
5 Dec 8, 2010
4:11 pm

abyssoft@...
abyssoft...
Send Email

I want to create a small database collecting all of the ways people have found to run JSLint. You have developed various ways of running it from command lines,...
7 Dec 6, 2010
7:16 am

graham_king_3
Send Email

My guess would be ”no”, but I’m no authority on the matter. I will add on behalf of a friend who has likewise been unable to access the group for more...
2 Dec 5, 2010
1:42 pm

Jakob Kruse
thekrucible
Send Email

Actually, it seems you made some errors in a couple of the tests that could invalidate the results. In ‘array literal joining char’ and ‘array literal...
2 Nov 30, 2010
1:36 pm

Marcel Duran
marcelduran
Send Email

JSLint allows new Array(3), but warns on new Array(3, 4) and new Array("3"). Someone wrote to me that they were confused by that. He was confused because he...
8 Nov 30, 2010
12:03 pm

Douglas Crockford
douglascrock...
Send Email

I'm sure most people are aware of this by now... seems to be due to a missing "widget.js" file. Cheers, Mike...
3 Nov 29, 2010
2:04 pm

MikeHatfield
Send Email

In "JavaScript: The Good Parts", page 42, a cascade is formatted very nicely. In my example, I have: var htmlToExamine = returnvalue. replace(/^Success/, "")....
7 Nov 24, 2010
6:19 pm

Erik Eckhardt
vorpalmage
Send Email

JSLint is complaining that my for...in loop is not filtered. The docs suggest the following format: for (name in obj) { if (obj.hasOwnProperty(name)) { ... } }...
19 Nov 22, 2010
1:41 am

Erik Eckhardt
vorpalmage
Send Email

given the following snippet where » are tabs (4 space) and ---------- are begin and end markers. (the blank line after the start marker is intentional) ... ...
1 Nov 21, 2010
11:20 pm

abyssoft@...
abyssoft...
Send Email

Hello, Line 1481 of fulljslint.js warns us of potentially dangerous comments. It does this using a regular expression in the variable "ax", defined on line...
5 Nov 18, 2010
8:46 pm

Chris
altearius
Send Email

Hello, Lines 3069 through 3072 of fulljslint.js specify the allowed values for the CSS "border-style" attribute:...
3 Nov 18, 2010
8:02 pm

Chris
altearius
Send Email

Hello, When checking CSS, JSLint validates color names. There is a long list of supported color names on lines 387 - 525 of fulljslint.js: ...
3 Nov 18, 2010
1:42 am

Chris
altearius
Send Email

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