Tagged Questions
JSLint is a "code quality" tool for Javascript developed by Douglas Crockford, a well-known developer also responsible for JSON, JSMin, ADSafe and parts of YUI. JSLint is parallel to C's lint.
306
votes
5answers
46k views
What does “use strict” do in javascript, and what is the reasoning behind it?
Recently I ran some of my javascript code through Crockford's JSLint, and it gave the following error:
Problem at line 1 character 1: Missing
"use strict" statement.
Doing some searching, I ...
37
votes
12answers
15k views
Why avoid increment (“++”) and decrement (“--”) operators in JavaScript?
I'm a big fan of Douglas Crockford's writing on JavaScript, particularly his book JavaScript: The Good Parts. It's made me a better JavaScript programmer and a better programmer in general. One of his ...
28
votes
6answers
4k views
What is the reason behind JSLint saying there are “too many var statements”
JSLint (with the onevar flag turned on) is flagging some javascript code that I have with the following:
Problem at line 5 character 15: Too many var statements.
I am happy to fix these errors, but ...
26
votes
1answer
5k views
JSLint is suddenly reporting: Use the function form of “use strict”
I include the statement:
"use strict";
at the beginning of most of my Javascript files.
JSLint has never before warned about this. But now it is, saying:
Use the function form of "use strict".
...
26
votes
4answers
9k views
26
votes
8answers
7k views
What does the JSLint error 'body of a for in should be wrapped in an if statement' mean?
I used JSLint on a JavaScript file of mine. It threw the error:
for( ind in evtListeners ) {
Problem at line 41 character 9: The body of a for in should be
wrapped in an if statement to filter ...
23
votes
1answer
263 views
How can you trigger the “What the hell is this?” JSLint message?
JSLint has some interesting messages, such as eval is evil. when you use an eval statement, and Weird relation. when comparing two literals, e.g. 1 == 2.
I was looking through a list of the JSLint ...
18
votes
5answers
351 views
Is there any single tool that runs JSLint, W3C validator (both CSS3 and HTML5) on files in a given directory?
I want a single program that recursively finds all *.js, *.html and *.css files in a given directory and JSLints, and W3C validates them respectively and prints out all errors found. Also it ...
18
votes
2answers
2k views
Purpose of JSLint “disallow insecure in regex” option
I have a line of code that gets the following error when run through JSLint:
Lint at line 604 character 48: Insecure '^'.
numExp = parseInt(val[1].replace(/[^\-+\d]/g, ""), 10);
This error seems to ...
18
votes
2answers
8k views
Using JSLint in Notepad++
I have seen other text editors use extensions to allow syntax checkers such as JSLint, is this possible with Notepad++?
18
votes
1answer
4k views
JSLint: Using a function before it's defined error
I'm using JSLint to verify most of my external Javascript files, but the largest amount of errors I'm getting is from functions being used before they're defined.
Is this really an issue I should ...
17
votes
4answers
292 views
JavaScript catch parameter already defined
I'm trying to understand why I'm getting the following error, not how to work around it.
Passing the following code to JSLint or JSHint yields the error 'err' is already defined.
/*jslint white: ...
17
votes
6answers
2k views
What side effects does the keyword 'new' have in JavaScript?
I'm working on a plug-in for jQuery and I'm getting this JSLint error:
Problem at line 80 character 45: Do not use 'new' for side effects.
(new jQuery.fasterTrim(this, options));
I haven't had ...
17
votes
2answers
4k views
Solution for JSLint errors
I have started using JSLint. I checked my code and I am getting this errors:
Problem at line 92 character 7: Move the invocation into the parens that contain the function.
})();
Problem at line 92 ...
16
votes
5answers
2k views
JSLint error: Move all 'var' declarations to the top of the function
JSLint site updated, and I cannot check JS scripts anymore. For me, this warning is not critical, and I don't want to go through thousands of lines to fix this, I want to find more critical problems.
...
16
votes
3answers
3k views
The “unexpected ++” error in jslint
What is the best practice for that then?
Jslint explains that it "adds confusion". I don't see it really...
EDIT: The code, as requested:
var all,l,elements,e;
all = ...
15
votes
4answers
4k views
How do you use vim's quickfix feature?
I'm a pretty new Vim user and I've found that its learning curve is quite steep (at least for me). I just installed this vim script for JavaScriptLint error checking, which shows errors in vim's ...
12
votes
5answers
3k views
How to get around the jslint error 'Don't make functions within a loop.'
I am working on making all of our JS code pass through jslint, sometimes with a lot of tweaking with the options to get legacy code pass for now on with the intention to fix it properly later.
There ...
12
votes
14answers
4k views
Is JS lint available for offline use?
I'd like to use JSLint but am wary of tools that have access to my unfiltered source-code. Is there an offline version or is there another similar tool that does "lint error checking" for JavaScript ...
12
votes
12answers
3k views
Is there an offline version of JSLint for Windows?
I would like to check my JavaScript files without going to JSLint web site.
Is there a desktop version of this tool for Windows?
12
votes
10answers
6k views
Maven plugins for javascript
Javascript code can be tough to maintain.
I am looking for tools that will help me ensure a reasonable quality level.
So far I have found JsUNit, a very nice unit test framework for javascript. Tests ...
11
votes
4answers
226 views
(…()) vs. (…)() in javascript closures
I know this is silly, but there's any difference between this:
(function() {
var foo = 'bar';
})();
and this?
(function() {
var foo = 'bar';
}());
JSLint tells us to Move the ...
11
votes
3answers
3k views
Is it possible to validate my jQuery JavaScript with JSLint?
I wanted to check my JavaScript with JSLint. I am also using jQuery and JSLint seems to be very unhappy about jQuery.
So, if I have this code:
$(document).ready{
$("a").click(function() {
...
11
votes
5answers
2k views
What's wrong with var x = new Array();
In JSLint, it warns that
var x = new Array();
(That's not a real variable name) should be
var result = [];
What is wrong with the 1st syntax? What's the reasoning behind the suggestion?
10
votes
7answers
1k views
Does it make any sense to use JSLint and follow it?
Lately I've been writing some JS code using jQuery and JavaScript as it is and I thought I will give JSLint a try. Let me say that the code contains various functions and jQuery usages and it works ...
10
votes
2answers
3k views
JSLint's issue with 'window' as a global variable
So I'm using JSLint to try and detect errors. I turn some options off I don't like, but I don't see any way to enable being able to use the window global variable. Well there is the Yahoo Widget ...
10
votes
5answers
5k views
JSLint (CLI): options?
I'm running JSLint's Rhino version from the Ubuntu command line like so:
$ rhino jslint.js myScript.js
While the web interface offers various options, I couldn't figure out how to invoke those via ...
8
votes
2answers
226 views
Finding justification in some of Crockford's claims
I've read Crockford's JavaScript: The Good Parts and I use his validator JSLint. He is a world reference, so I follow his advice.
Sometimes, I'm left wondering the justification behind his ...
7
votes
2answers
220 views
JavaScript function order: why does it matter?
Original Question:
JSHint complains when my JavaScript calls a function that is defined further down the page than the call to it. However, my page is for a game, and no functions are called until ...
7
votes
1answer
2k views
JSLint error: “Move the invocation into the parens that contain the function”
im trying to figure out what JSLint meant by this error and whow it needs to be rewritten? Thanks very much for your input. Kind regards, Sam.
Error: Problem at line 78 character 3: Move the ...
7
votes
4answers
1k views
JSlint error 'Don't make functions within a loop.' leads to question about Javascript itself
I have some code that invokes anonymous functions within a loop, something like this pseudo example:
for (i = 0; i < numCards; i = i + 1) {
card = $('<div>').bind('isPopulated', function ...
7
votes
6answers
2k views
JSLint Expected '===' and instead saw '=='
Recently I was running some of my code through JSLint when I came up with this error. The thing I think is funny about this error though is that it automatically assumes that all == should be ===.
...
7
votes
2answers
799 views
How can I run jslint as a javascript compile tool in emacs for Windows?
I'm using GNU Emacs on Win32.
I want to be able to run jslint as a compilation on .js files, and then step through the errors that jslint reports.
I have jslint, the WScript version.
7
votes
1answer
1k views
Contending with JS “used before defined” and Titanium Developer
I have a lengthy JavaScript file that passes JSLint except for "used before it was defined" errors.
I used normal function declarations, as in...
function whatever() {do something;}
as opposed ...
7
votes
5answers
2k views
How should I define a JavaScript 'namespace' to satisfy JSLint?
I want to be able to package my JavaScript code into a 'namespace' to prevent name clashes with other libraries. Since the declaration of a namespace should be a simple piece of code I don't want to ...
6
votes
5answers
255 views
JSLint with multiple files
JSLint works fine for just one JavaScript file. Recently, I've started breaking my program into several pieces.
I don't want to be stringing the pieces each time I use JSLint to check my code. What ...
6
votes
3answers
460 views
Function declaration in CoffeeScript
I notice that in CoffeeScript, if I define a function using:
a = (c) -> c=1
I can only get the function expression:
var a;
a = function(c) {
return c = 1;
};
But, personally I often use ...
6
votes
1answer
281 views
Expressions in JavaScript Ternary Operator and JSLint
I recently received a comment on one of my blog posts about JSLint asking why JSLint threw an error with the following:
s === "test" ? MyFunc() : MyFunc2();
The error generated was:
"Expected ...
6
votes
1answer
1k views
JSLint “insecure ^” in regular expression
JSLint reports Insecure '^' for the following line. Why is that? Or is it just going to complain any time I want to negate a character class?
// remove all non alphanumeric, comma and dash characters
...
6
votes
2answers
2k views
JSLint reports “Unexpected dangling” character in an underscore prefixed variable name
I know that some people consider the presence of a leading underscore to imply that a variable is "private," that such privacy is a fiction, and assume this is why JSLint reports such names with an ...
6
votes
2answers
2k views
JSLint Error Report - Whats wrong with this?
I got this error and dont know what could be the cause. Any idea?
Problem at line 2127 character 18: Bad for in variable 'sport'.
for (sport in sugested_sports)
// make array
...
6
votes
6answers
3k views
'variable' was used before it was defined
I am checking if a variable is defined or not, and if it is not defined explicitly I am going to define it by doing:
if ( typeof(aVariable) == 'undefined' ) {
var aVariable = value;
}
Because the ...
6
votes
6answers
1k views
Does JSLint improve your Javascript coding?
Douglas Crockford says:
JavaScript is a sloppy language, but
inside it there is an elegant, better
language. JSLint helps you to program
in that better language and to avoid
most of the ...
6
votes
4answers
2k views
JSLint: control comments (selective ignore)
Does JSLint have anything like JavaScript Lint's control comments (e.g. /*jsl:fallthru*/) to make it ignore certain passages?
5
votes
3answers
158 views
JSLint, else and Expected exactly one space between '}' and 'else' error
Why JSLint report in code:
function cos(a) {
var b = 0;
if (a) {
b = 1;
}
else {
b = 2;
}
return b;
}
error:
Problem at line 6 character 5: Expected ...
5
votes
1answer
78 views
Getting JSLint to break a build in visual studio 2010
I have integrated JSLint (http://javascriptlint.com) into my projects post build - but can't seem to get it to fail the build if an error/warning occurs?
Currently JSLint is ran from a .bat file that ...
5
votes
2answers
243 views
Javascript/jsLint: What to replace jQuery(this) with when using “use strict”;
When I validate the following code with jslint I get the following errors.
function displayMegaDropDown() {
"use strict";
var liMegaPosition, divMegaOffset;
liMegaPosition = jQuery(this).position();
...
5
votes
1answer
167 views
javaScript reserved keywords
I am wondering how JavaScript's reserved keywords / functions are managed.
Example:
According to:
http://www.quackit.com/javascript/javascript_reserved_words.cfm
delete is a reserved keyword ...
5
votes
5answers
386 views
JSLint message: Unused variables
what can I do if JSLint complains about "i" being an unused variable in such a scenario:
var items = "<option selected></option>";
$.each(data, function (i, item) {
items += ...
5
votes
1answer
897 views
How to ignore '$' is not defined JsLint Error. (Visual Studio 2010 JsLint Extentsion)
I am trying to get my error count down. Lots of the things that JsLint complains about I don't find are really errors but more personal preference in my option(like braces on their own line).
It ...