Search the web
Sign In
New User? Sign Up
jslint_com · JSLint.com
? 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.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 255 - 284 of 993   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
255
After tracking down a bug in 0.8.5.3 of the HTML Validator Firefox extension, I decided to try out JSLint on some of the code in it. It doesn't work because of...
saturn_jct
Offline Send Email
Oct 3, 2008
5:52 pm
256
... Early on JSLint had support for some of JScript's deviations. I decided to remove that because we are better off sticking to the portable standard. I think...
Douglas Crockford
douglascrock...
Offline Send Email
Oct 3, 2008
9:34 pm
257
... Extensions. ... 'const' exists in Javascript since version 1.5? JSLint doesn't accept 'const' ?? If yes, why ?...
Fred Lorrain
grumelo68
Offline Send Email
Oct 5, 2008
2:49 pm
258
... const is not in the ECMAScript standard. JSLint accepts a subset of the ECMAScript standard....
Douglas Crockford
douglascrock...
Offline Send Email
Oct 5, 2008
3:10 pm
259
Do you use http://developer.yahoo.com/yui/yuitest/ on JSLint, some other test methodology, or none? I have very little automated testing with JavaScript, and...
Jacob Davenport
jpdavenportjr
Offline Send Email
Oct 6, 2008
8:28 pm
260
I have added CSS2 support to JSLint. This was motivated by the security needs of ADsafe. Only by fully parsing the CSS content on a page can we be confident...
Douglas Crockford
douglascrock...
Offline Send Email
Oct 6, 2008
8:29 pm
261
In case you were looking for workaround suggestions, a # immediately preceding a property is ignored by IE but not by Firefox. - it would be nice if when...
Jordan
ljharb
Online Now Send Email
Oct 7, 2008
7:10 am
262
... I feel like I've opened a can of worms. I'm not confident that a Code Quality tool makes sense for CSS. The fact that a form is tolerated by only one brand...
Douglas Crockford
douglascrock...
Offline Send Email
Oct 7, 2008
5:38 pm
263
... Code ... by ... Very good point... the problem is that in Javascript, functionality in "forms that should be avoided" can be accomplished a variety of...
Jordan
ljharb
Online Now Send Email
Oct 7, 2008
8:10 pm
264
My usual report on JSLint itself: 1467: Unexpected space after '('. 1494: Unexpected space after '('. 2443: Expected 'warning' to have an indentation of 16...
santini.alberto
Offline Send Email
Oct 8, 2008
9:13 am
265
Why does JSLint complain that "type is unnecessary" when it sees a script element with a type attribute in an html file? Is there any way to turn this...
Jakob Kruse
thekrucible
Offline Send Email
Oct 16, 2008
1:25 pm
266
4.01 in in error. "text/javascript" is not a valid MIME type....
Douglas Crockford
douglascrock...
Offline Send Email
Oct 16, 2008
2:27 pm
267
That doesn't seem helpful. Stricly speaking, "text/javascript" *is* a valid MIME type. It is listed by IANA. It is listed as "obsolete" though, with a...
Jakob Kruse
thekrucible
Offline Send Email
Oct 16, 2008
4:39 pm
268
Correcting myself here. "Standard" is not the correct word. "Recommendation" is. But W3C recommendations do have a lot in common with standards, and we would...
Jakob Kruse
thekrucible
Offline Send Email
Oct 16, 2008
4:49 pm
269
Many of the "features" in JSLint have nothing to do with standards or even widely-used practices. It's a tool written by one guy to make sure things are the...
mnewton32@...
mnewton32
Offline Send Email
Oct 16, 2008
5:13 pm
270
This is true. JSLint is all about code quality, not standards. I understand that completely. But requiring that users of the tool make their html files...
Jakob Kruse
thekrucible
Offline Send Email
Oct 16, 2008
5:33 pm
271
JSLint now provides a more useful warning when a break is missing a semicolon....
Douglas Crockford
douglascrock...
Offline Send Email
Oct 16, 2008
9:16 pm
272
If you're writing an HTML & javascript based application for Adobe AIR, type="application/x-shockwave-flash" is also a valid value (when linking in a .swf...
Andy Stevens
andystevens_...
Offline Send Email
Oct 17, 2008
1:01 pm
273
Hello, ... function. ... Personally I don't think this practice should be recommended. It contradicts the related recommendation in the Code Conventions ...
ojacquem
Offline Send Email
Oct 17, 2008
1:36 pm
274
What's wrong with: var var1, // comment var2, // comment var3; // comment It usually works for me. /Jakob ... From: ojacquem To: jslint_com@yahoogroups.com ...
Jakob Kruse
thekrucible
Offline Send Email
Oct 17, 2008
3:00 pm
275
Hi List, I was surprised to run JSLint on some of my code today only to see the following message: 'hasOwnProperty' is a really bad name. Stopping, unable to...
Daniel Cassidy
mail@...
Send Email
Oct 20, 2008
5:50 pm
276
Hi List, On Mon, Oct 20, 2008 at 6:50 PM, Daniel Cassidy ... Patch here: http://www.danielcassidy.me.uk/misc/fulljslint-hasOwnProperty.patch Thanks, Dan....
Daniel Cassidy
mail@...
Send Email
Oct 20, 2008
11:48 pm
277
Ok now I understand your answer. You said that type is not mandatory with <script>. It seems that now we should use type="application/javascript" and not...
Fred Lorrain
grumelo68
Offline Send Email
Oct 22, 2008
7:31 am
278
I'm trying to edit an existing codebase to make it pass JSLint verification so that it can be packed or minified safely. Mostly, my code requires small,...
enaeseth
Offline Send Email
Oct 23, 2008
9:31 pm
279
... Hm, that code snippet didn't post as well as it previewed. Trying again: this.foo = (typeof(foo) != "undefined") ? foo...
enaeseth
Offline Send Email
Oct 23, 2008
9:40 pm
280
... Why are you doing that?...
Douglas Crockford
douglascrock...
Offline Send Email
Oct 23, 2008
10:25 pm
281
... I do not believe in DOCTYPE. Like much of the W3C stack, it is a well-intentioned blunder....
Douglas Crockford
douglascrock...
Offline Send Email
Oct 23, 2008
10:26 pm
282
Hi Douglas, On Thu, Oct 23, 2008 at 11:25 PM, Douglas Crockford ... Two reasons. The first reason is that I keep seeing very subtle bugs being introduced as a...
Daniel Cassidy
mail@...
Send Email
Oct 23, 2008
11:12 pm
283
... this.foo = (typeof(foo) !== 'undefined') ? foo : true; See "Line Breaking" on the page http://www.jslint.com/lint.html Dan....
Daniel Cassidy
mail@...
Send Email
Oct 23, 2008
11:20 pm
284
... I don't want to modify JSLint to satisfy a single, unnecessary, dubious use. I recommend that you change your variable name. And if you are trying to...
Douglas Crockford
douglascrock...
Offline Send Email
Oct 23, 2008
11:40 pm
Messages 255 - 284 of 993   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help