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

Messages

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

Hi, I have a queer error message in my code. //My full code: "use strict"; var foo = true; //The error message: Error: Problem at line 2 character 9: It is not...
3 Jan 13, 2010
1:15 pm

Douglas Crockford
douglascrock...
Send Email

Hi. In production mode I concatenate my files. What if one of them is not in strict mode? So the result is: //none-strict-mode-ecmascript "use strict"; ...
5 Jan 11, 2010
10:52 am

walfisch_in_the_sea
walfisch_in_...
Send Email

Hi List, Can somebody tell me why JSLint give me these errors? I think let, const are JavaScript language feature. Lint at line 38 character 1: Expected an...
16 Jan 8, 2010
2:46 pm

Noah Sussman
thefangmonster
Send Email

Hi jslint.com mailing list, As a programmer of server side JavaScript software I would be very convenient if jslint also supported other APIs other than the...
2 Jan 5, 2010
10:43 am

Pelle Wessman
voxpelli
Send Email

Hi, I use the following syntax quite regularly for generating HTML rather than using the +="" or similar techniques. var htmlstring = '\ <h1>Title</h1>&#92; <p>\ ...
4 Dec 23, 2009
5:10 pm

jameswcryer
Send Email

Everyone, Related to the discussion on ’undefined’, ‘private’ is also reported as a reserved word, but ‘final’ is not. The YUI Compressor chokes on...
1 Dec 17, 2009
5:02 pm

Jakob Kruse
thekrucible
Send Email

In JavaScript/ECMAScript, undefined is NOT a reserved word, but I get the error "Expected an identifier and instead saw 'undefined&#39; (a reserved word)" when...
7 Dec 17, 2009
3:01 pm

donavon.west
Send Email

I've noticed that JSlint insists that all the times I put an alert box in that it is listad as an "Implied global". I don't see how that is possible since it...
2 Dec 15, 2009
10:14 am

Dominic Mitchell
happygiraffe...
Send Email

When an array or object contains functions: var aFunct=[]; aFunct[0]=fnMyFunction; What are the pros and cons of invoking the function using either of the...
2 Dec 14, 2009
2:09 pm

Stefan Weiss
weiss@...
Send Email

I am thinking to remove the Disallow undefined variables. I added the option originally to make the transition easier for people with sloppy code. But that was...
9 Dec 5, 2009
4:33 am

Stefan Weiss
weiss@...
Send Email

This extension has so improved my jslint/JavaScript workflow. Some suggestions: 1 - Single key (CTRL-J maybe?) to launch the validator. 2 - Launching the...
6 Dec 4, 2009
8:21 pm

martijnbeulens
Send Email

I've updated my jslint wrapper: - Now supports the "predef" option. - Uses jslint 2009-11-24, which adds the "devel" option. As usual, it's available from...
1 Dec 2, 2009
11:00 pm

Dominic Mitchell
happygiraffe...
Send Email

JSLint warns: unexpected /*member when I add a new function to an object. What is this warning about? Sam...
2 Nov 28, 2009
1:01 pm

Douglas Crockford
douglascrock...
Send Email

I added an Assume console, alert, ... (devel) option. It predefines globals that are useful in browser development that should be avoided in production. It is...
1 Nov 19, 2009
7:17 pm

Douglas Crockford
douglascrock...
Send Email

Hi, apologies if this has already been covered. I was wondering whether there are any plans to bring in the option to be able to flag console.log statements in...
4 Nov 17, 2009
8:23 am

Toby Maxwell-Lyte
toby_maxwell...
Send Email

Hi all! I'd like to let you know that I've released a new version of my jslint wrapper, jslint4java. The new features are: * Upgrade to JSLint 2009-10-04. *...
1 Nov 12, 2009
10:45 pm

Dominic Mitchell
happygiraffe...
Send Email

I'm working on a bookmarklet for ie6 which I hope explains the lack of comments, short variables, and single-lined nature of the function. jslint seems to miss...
3 Nov 12, 2009
3:27 pm

samckayak
Send Email

Given var b = javaApplet.Connect("javascript:OnConnect()"); as the target of investigation, I inevitably see the "Script URL" complaint from JSLint. Since the...
3 Nov 3, 2009
7:28 pm

Brook
mrprogguy
Send Email

What is the intent of flagging a line like gBarGinArr = []; with the error message "Read only?"...
2 Nov 3, 2009
6:59 pm

Douglas Crockford
douglascrock...
Send Email

This code jslint fine, but the second aa function is not accessible. Can't jslint give a warning for this? "use strict"; var NN = ''; function aa(name) { NN =...
2 Nov 2, 2009
12:36 pm

Douglas Crockford
douglascrock...
Send Email

Hi, I use JSLint with Rhino. And as the goodparts sometimes change, I wrote a short rubyscript to update the options-string. Is there another way to get the...
1 Oct 31, 2009
7:56 pm

walfisch_in_the_sea
walfisch_in_...
Send Email

Hello, I am trying to integrate JSLint with our build and hence my preferred choice is Rhino engine for JSLint. However I havn't had much of luck in getting...
1 Oct 30, 2009
4:37 am

Kunal Kumar
kunal_ktr
Send Email

I was playing around with JSLint lately, and entered the following: var ss = " ///// "(" \/ "); JSLint returned: "Problem at line 1 character 10: Bad...
3 Oct 28, 2009
7:30 pm

Paul Novitski
paul.novitski
Send Email

After working with JSLint for a while i got tired from copy pasting my JS code into jslint.com, so i searched google for a dreamweaver JSLint plugin. Did not...
14 Oct 23, 2009
12:20 am

martijnbeulens
Send Email

Hi, We have some custom objects that are injected into the DOM from a lower layer. In order to access these we have to do so using global references. E.g....
2 Oct 9, 2009
2:14 pm

Douglas Crockford
douglascrock...
Send Email

Just read a fascinating interview with the author of our favorite tool!It also has great interviews with other eminent programmers of our time (Eich, Bloch,...
1 Oct 9, 2009
12:46 pm

Arthur Blake
blakesys
Send Email

var foo = { get bar() {}, set bar(value) {} }; The above fails with the following errors: Problem at line 2 character 9: Expected ':' and instead saw 'bar'. ...
2 Oct 6, 2009
6:27 pm

Douglas Crockford
douglascrock...
Send Email

Code can become difficult to read if it goes on for too long without a line break. This most obviously becomes a problem as soon as it becomes necessary to...
9 Oct 4, 2009
3:11 am

Stefan Weiss
weiss@...
Send Email

Hi, When JSLinting there are several scenarios where we get the "Variable {a} was used before it was declared. " message. This usually occurs when we define...
9 Oct 2, 2009
6:10 pm

Toby Maxwell-Lyte
toby_maxwell...
Send Email

I'm sure this has been asked before, but I searched this forum and scanned the jslint docs without finding an explanation. What is the rationalle in flagging...
3 Oct 2, 2009
1:36 pm

pauanyu
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