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

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...
7 Oct 17, 2008
1:01 pm

Andy Stevens
andystevens_...
Send Email

JSLint now provides a more useful warning when a break is missing a semicolon....
1 Oct 16, 2008
9:16 pm

Douglas Crockford
douglascrock...
Send Email

My usual report on JSLint itself: 1467: Unexpected space after '('. 1494: Unexpected space after '('. 2443: Expected 'warning&#39; to have an indentation of 16...
1 Oct 8, 2008
9:13 am

santini.alberto
Send Email

JSLint can now check CSS files. CSS files are required to have this as the first line: @charset "UTF-8"; JSLint's CSS checking is not yet complete, but it will...
11 Oct 7, 2008
8:10 pm

Jordan
ljharb
Send Email

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...
1 Oct 6, 2008
8:28 pm

Jacob Davenport
jpdavenportjr
Send Email

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...
4 Oct 5, 2008
3:10 pm

Douglas Crockford
douglascrock...
Send Email

The following CSS errors are reported, and I'm not sure why they are errors or what to do differently for them: Problem at line 420 character 5: Unexpected...
2 Sep 30, 2008
2:09 pm

Douglas Crockford
douglascrock...
Send Email

To avoid overload of my scripts and objects, I always put this kind of code in my libraries: if(!window.isLoaded_Overload) { var isLoaded_Overload = true; ...
6 Sep 26, 2008
2:41 pm

Fred Lorrain
grumelo68
Send Email

What means the Problem message ? Which rule I'm not respecting by using javascript: ? Problem at line 854 character 33: Script URL. peopleURL =...
5 Sep 25, 2008
9:16 am

Fred Lorrain
grumelo68
Send Email

escape & unescape do not do url encoding correctly and they are not in the official standard. JSLint no longer accepts them. If you want JSLint to pass crappy...
5 Sep 23, 2008
10:22 pm

Michael Newton
mnewton32
Send Email

In my external JS file, I use the following code: document.getElementById('element&#39;).innerHTML = object.property; I receive both of the follower errors from JS...
2 Sep 23, 2008
6:48 pm

Douglas Crockford
douglascrock...
Send Email

Hi, I just discovered jslint and it is *great*. Thank you, thank you, thank you! Yes, it did hurt my feelings... but in a good way, except for one case. I...
2 Sep 22, 2008
5:12 am

William Chapman
jeddahbill
Send Email

Using Jaxer (http://www.aptana.com), a Ajax server, it is possible insert in the html page tags as <jaxer:include ... Linting the page, JSLint displays ...
3 Sep 20, 2008
2:17 pm

santini.alberto
Send Email

I have a code snippet containing: ... if (!(contents instanceof HTMLElement)) { ... Of course JSLint says 'HTMLElement&#39; is undefined. Same message with browser...
2 Sep 20, 2008
1:25 pm

Douglas Crockford
douglascrock...
Send Email

I've been exprimenting with mixing jslint and the dojo editor to make syntax checking script editor. I've noticed that something in jslint seems to conflict...
4 Sep 17, 2008
9:50 pm

Douglas Crockford
douglascrock...
Send Email

Hello, I'm for sure too strict, too maniac but ... JSLint is used to validate JavaScript so what about providing perfect JavaScripts in JSLint? If you turn on...
4 Sep 12, 2008
6:51 am

Fred Lorrain
grumelo68
Send Email

Hey guys, At RWE, I got the idea after hearing Douglas' talk on the Good Parts to use AdSafe and JSLint for a new (poorly considered in my opinion but I don't...
2 Sep 9, 2008
8:05 pm

Douglas Crockford
douglascrock...
Send Email

I am trying to use the command-line version of JSLint on an HTML file and it is failing with this error. Lint at line 28 character 1: Unexpected '@'. @import...
2 Sep 4, 2008
10:23 pm

Douglas Crockford
douglascrock...
Send Email

There is a new version of my Widget Tester Widget at http://tinyurl.com/5unocx . This incorporates the 30 August, 2008 version of JSLint. The update has also...
1 Sep 1, 2008
11:04 am

Merlin
harry152566
Send Email

I added a strict option that anticipates the "use strict"; pragma of ES3.1. If the first statement of a compilation unit is "use strict"; then the JavaScript...
1 Aug 31, 2008
12:36 am

Douglas Crockford
douglascrock...
Send Email

I have structured my Javascript into to files basicfunctions.js specialfunctions.js "basicfunctions.js" gets included allways - as every page of my site needs...
5 Aug 27, 2008
3:05 pm

Douglas Crockford
douglascrock...
Send Email

try this : var p = "eval";...
6 Aug 27, 2008
11:54 am

Douglas Crockford
douglascrock...
Send Email

I notice that you recommend in your book not to use substring (and you don't even mention the deprecated substr) and to use slice instead. I have the dead tree...
2 Aug 27, 2008
11:15 am

montago_2004
Send Email

In 3000 lines of JS code, I'm completely clean according to JSLint, except for five messages like this: "Be careful when making functions within a loop....
8 Aug 26, 2008
1:16 pm

Ben Collver
tylx
Send Email

Hi, I had a suggestion for a feature for JSLint that I feel would be pretty useful. In addition to the options groups ("Good parts" and "Recommended&quot;), would...
3 Aug 22, 2008
5:58 pm

Douglas Crockford
douglascrock...
Send Email

Hello, I know that break is recommended before a case but it's not mandatory. In the following example there is nothing wrong, right? switch (this.layout) { ...
3 Aug 20, 2008
12:59 pm

Fred Lorrain
grumelo68
Send Email

Hey all, I currently have code that looks like the following: <script type="text/javascript"> //<![CDATA[ ... //]]> </script> Since I'm doing this in xhtml, my...
4 Aug 20, 2008
12:20 pm

Douglas Crockford
douglascrock...
Send Email

Hello, JSLint generate an error if a symbol is not declared. That's perfect! What about generating a warning if a symbol is declared but never used? A switch...
4 Aug 19, 2008
6:54 am

Fred Lorrain
grumelo68
Send Email

Hello, Is it a good practice to try to use a single 'var' statement per scope? For sure it help the compression of the script. If it's a best practice can an...
5 Aug 19, 2008
6:52 am

Fred Lorrain
grumelo68
Send Email

For the release Aug, 12nd, at line 910 JSLint (run on itself) displays the message "Unexpected escaped character '<' in regular expression." ... if (src ||...
1 Aug 17, 2008
1:24 pm

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