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.
0
votes
0answers
5 views
JSHint: How do disable the check for unsafe characters for comments?
When using "unsafe characters" (e.g. umlauts) in comments I get the "This character may get silently deleted by one or more browsers." error. Is there any way to disable this check for comments ...
-1
votes
0answers
25 views
Is it possible to run JSHint on a website? [closed]
I tried to load the script on my website.
This one: http://www.jshint.com/get/jshint-2.1.1.js
Then i tried the success snippet on the site
var success = JSHINT(source, options, globals);
And I ...
1
vote
1answer
28 views
JSLint error: Expected 'ignore' and instead saw 'ex'
I use JSLint all the time, but just today, I came across an error that I've never seen before. With the following code, I got the error shown below:
try {
...
1
vote
1answer
54 views
Creating global 'for' variable. Should be 'for (var items …'
I am using jshint. Can anyone tell me why it's treating "for" keyword as global variable?
Creating global 'for' variable. Should be 'for (var items ...'
Here's the loop:
//items and properties ...
0
votes
0answers
24 views
Does Mojo use jslint nomen flag backwards?
I've just started with jsLint and mojo(1.7.1-alpha-1) so bare with me...
In my pom.xml file which I use for my project I've set the following up for jsLint:
<plugin>
...
1
vote
2answers
41 views
JSLint on Visual Studio/ASP.NET MVC Projects
I'm using Visual Studio 2012 and the JsLint plugin.
Is there a better way to use JsLint for inline javascript in CSHTML files?
If I try to select the javascript text and run the tools just on the ...
0
votes
1answer
93 views
Disabling or Overriding JSLint Options in Sublime Text 2
I have JSLint Plugin installed in Sublime Text 2. But i don't agree with some of the rules imposed by the JSLint specially this error on declaring variables inside a loop.
Move 'var' declarations to ...
0
votes
1answer
24 views
How to pass parameters to local Prettydiff.com
I've downloaded a copy of PrettyDiff to embed in my own local application, so I can compare two AJAX loaded files that are in two variables.
Unfortunately, I can't seem to make prettydiff work. ...
1
vote
1answer
37 views
JSLint “JavaScript URL.” error
JSLint is giving me a weird error. My code looks something like this:
{ reporter: 'mocha:Spec' }
and JSLint is throwing an error that just says:
JavaScript URL.
With the line number. Has anyone ...
-1
votes
1answer
41 views
JSLint - ignore missing function name [closed]
I am trying to evaluate an anonymous JavaScript function using JSLint. However, JSLint fails evaluating it because the function is missing a name. What option can I set to allow JSLint to ignore that ...
1
vote
1answer
235 views
JsLint in sublime text 2
How to make jslint don't display logs if it doesn't find any errors in sublime text 2.
Normally, it displays like this
-2
votes
0answers
52 views
What are your favorite coding rules from JSLint? [closed]
Everybody agrees on saying that code quality is important. But some coding rules are critical, and others may be pure cosmetic. We just integrated somthing like 280 rules from JSLint in our Eclipse ...
1
vote
1answer
63 views
How to make JSHint warn when HTML tags are included in JavaScript code?
In our dev shop, we use client-side templates and include no HTML tags in our JavaScript code.
In our continuous integration process, we run JSHint automatically after every commit (post-build action ...
1
vote
1answer
39 views
Why does JSLint return an Unexpected 'String' message?
I've wanted to add some additional functionality to strings in Javascript and am using the following JavaScript code:
String.prototype.left = function (n) {
"use strict";
return ...
1
vote
1answer
27 views
Why does jsLint in VS generate: A '<noscript>' must be within '< body head noframes >?
The basic structure of my page is
body
div id="content"
nav
article id="spa"
noscript
I searched the docs page for noscript but found nothing. I'm not ...
1
vote
2answers
50 views
Javascript code style enforcer or checker
I'm working on a project that uses a specific styleguide for javascript. For instance, an if/else statement would look like this:
if( condition ){
// Bla bla
}
else {
// Another bla bla
}
What ...
-1
votes
1answer
34 views
Safety - Creating a clean version of undefined w/ jslint adherence?
undefined is in the global scope and hence can get "dirty" as many browsers do not adhere to ES5 spec which states that undefined should not be writable.
Also, it was not made a reserved word by ...
2
votes
4answers
56 views
JSLint Strict Violation. Object Oriented Javascript frustrations
I'm trying to learn to do object oriented programming in JavaScript and getting JSLint strict violations. I understand that I'm using this in a non-global context (or something to that effect...), but ...
11
votes
2answers
149 views
Can the label “javascript:” cause any problems?
Both JSLint and JSHint issue warnings when they encounter a labelled statement whose identifier matches the following regular expression:
...
3
votes
0answers
68 views
Safety - not character sets - [^z]? [duplicate]
http://www.jslint.com
states that it does not allow not character sets [^foob] because of security issues. ( I choose not to select the ignore option )
What is an example of how this could be a ...
3
votes
3answers
70 views
How to make JSLint scan the whole file?
I am using JSLint to scan some Javascript code for potential errors. I'm using Notepad++ with the JSLint plugin. The problem is - it just scans, say x% of file and then stops. I have unchecked the ...
1
vote
1answer
53 views
How to use JSLint to scan only for eval errors?
I want to scan my Javascript code only for eval errors using JSLint. I want to tolerate all the other errors. I know I need to set all other error types as "true" individually, but there are a lot of ...
0
votes
1answer
29 views
How to ignore some HTML tags in JSLint?
I'm using 'nobr' HTML tag to avoid line breaks in forms, though, JSLint gives me errors
Is it possible to make JSLint ignore some HTML tags?
Thank you
9
votes
4answers
142 views
Is it bad practice to use the same variable name in multiple for-loops?
I was just linting some JavaScript code using JSHint. In the code I have two for-loops both used like this:
for (var i = 0; i < somevalue; i++) { ... }
So both for-loops use the var i for ...
3
votes
1answer
56 views
How to avoid aptana to detect getter and setter as errors in JavaScript?
I have this code:
function A(){}
A.prototype = {
set a(v){},
get a(){return}
};
Aptana detects an error at this line set a(v){}, but it works on modern browsers.
How can I fix this ?
0
votes
1answer
52 views
What is the meaning of the background colors in the JSLint function report?
I just tested my code with JSLint and the background colors behind the function report is white, yellowish, blue and green.
I cannot find information about them?
I reckon they are not just for ...
0
votes
1answer
25 views
Add html tag to JSLint
How can in add html tag to JSLint ?
I have some errors with the message :
 JSLint: Unrecognized tag 'foo'.
I would like to add the tag foo to the html_tag recognized by JSLint.
2
votes
5answers
200 views
Simple way to check/validate javascript syntax
I have some big set of different javascript-snippets (several thousands), and some of them have some stupid errors in syntax (like unmatching braces/quotes, HTML inside javascript, typos in variable ...
1
vote
4answers
68 views
jslint - Don't make functions within a loop
Refering to this topic: Don't make functions within a loop. - jslint error
How would you handle a jquery .each(function () {...} within a for loop? knowing that i need the context of the "for" in ...
1
vote
1answer
50 views
The JSLint extension for VS2012 doesn't recognize JSON
I just installed the JSLint extension for VS2012 and I'm getting exceptions for some JSON settings files that I use. Using the default settings this caused my builds to be automatically cancelled so I ...
0
votes
1answer
19 views
Why did JSLint mark this line as an error
/*global THREE Coordinates $ document window*/
JSLint says it was expecting */ but got Coordinates instead
but the line passed when passed when I ran it in Eclipse javascript project.
2
votes
1answer
76 views
how to escape a quote in javascript without jslint crying foul
how would I escape the quote in the following line of code so that jslint doesn't throw a warning on it. Currently it throws an "Unclosed string" warning on this line.
input = ...
0
votes
3answers
179 views
HTML5 compliant html page [closed]
What does it mean to say the html page is HTML5 complaint or not? As a team leader, I need to come up with the check points to validate if the templates or pages designed and developed conform to the ...
1
vote
1answer
80 views
Regex character class inside character range failing intellij's jsLint inspection
What is the easiest way to rectify my failing inspection? There is no option in intellij (that I can find) to allow character classes inside a character range.
4
votes
1answer
56 views
JSLint complaints when calculating squares as in a * a
When I write this Javascript code:
var a = 2;
var aSquared = a * a;
JSLint marks a * a as a weird assignment. It marks just the product, not the assignment (I'm using Netbeans 7.3).
I know I can ...
2
votes
1answer
69 views
How can I suppress a JSLint warning for a single line?
I use nicEdit editor, which has a function object called nicEditor.
JSLint puts a warning on it:
A constructor name 'nicEditor' should start with an uppercase letter.
It ignores the /*jslint ...
2
votes
1answer
46 views
JSLint preferred access method in javascript— dot notation or array brackets?
A coworker is running JSLint on our code and fixing the issues that come up. One change he made was to go from this:
document.getElementById(control["value1"]);
to this:
...
0
votes
2answers
78 views
JSLint - how to fix ActiveXObject was used before it was defined error
JSLint objects to the line 22:
function() { return new ActiveXObject('Msxml2.XMLHTTP'); },
in the reqTry array. Is there any way I can change the code to prevent this error in JSLint?
It also ...
0
votes
4answers
83 views
Should var statements be placed at the top of functions?
If you follow jslint.com guidelines, it makes you put them at the top of the function and consolidate mutliple statements like this.
function(){
var foo,
moo,
hoo;
However, ...
0
votes
1answer
127 views
jslint-maven-plugin doesn't read jsSourceFolder and still reads default value
I'm trying to use jslint maven plugin. I included this in my pom file
<plugin>
<groupId>org.codehaus.mojo</groupId>
...
0
votes
1answer
34 views
jslint: Closing bracket after var statement
As a javascript newbie, I follow jslint suggestions when possible. Now here is something that doesn't make any sense to me.
The following code is valid:
function func() {
"use strict";
var ...
2
votes
1answer
58 views
Is “Bad Line Breaking” obsolete with “use strict”?
Please assume 'use strict'; Please also assume JSLint is on and errors cannot be ignored.
I find operators and ',' initiated lists so much more readable, e.g.:
var i = 0
, j = 1
, ...
0
votes
1answer
55 views
How do I get rid of “Nested comment.” error thrown by JSLint?
In the following example:
<!--[if lt IE 9]>
<script src="./js/lib/modernizr.custom.js"></script>
<![endif]-->
JSLint throws an error on the last line, saying ...
2
votes
1answer
265 views
Have jshint ignore certain files when building Twitter Bootstrap
I often have this problem when using Twitter Bootstrap with other 3rd-party JS libraries, such as html5.js from WordPress' "Twenty Twelve" theme, where the build fails because jshint (or jslint in ...
0
votes
1answer
29 views
Jslint cant pass trough object
I just started to use jslint with backbone. At the beginning of project i create object :
App = {
Models: {},
Views: {},
Controller: {}
}
and get error:" 'App' was used before it was ...
1
vote
1answer
130 views
JSLint - Bad Escaping for a Regex with variables
I've seen some posts about JSLint "bad escapement" warnings, but I just wanted to see if I'm doing this Regex correctly. (Note - I'm dabbler programmer).
I have a function (below) that attempts to ...
2
votes
3answers
152 views
Jslint does not like !==, seems to prefer ===, relation to typeof
Unexpected 'typeof'. Use '===' to compare directly with undefined.
if (typeof exports !== 'undefined') {
This is code from backbone.js.
It does not seem to like the syntax.
How can I change ...
0
votes
1answer
161 views
How to fix unexpected return when JSLint-ing a requireJS application?
My application is running requireJS and is set up using two files:
main.js sets everything and app.js "runs" the application.
main.js looks like this:
/*jslint browser: true, indent : 2, nomen : ...
-5
votes
1answer
57 views
Jslint in Java application [closed]
is there any good Jslint wrapper for Java?
I found Jslint4java, but I would like to get more options.
P.S. I mean, I need to test JS code with Java application.
Thank you
0
votes
1answer
294 views
JavaScript regular expression for matching URL path components
What JavaScript regular expression should I use to match individual components of a URL path? By path, I mean the path of the resource on the server, e.g. if the URL is ...



