JSHint is a community-driven tool to detect errors and potential problems in JavaScript code and to enforce coding conventions.

learn more… | top users | synonyms

-1
votes
0answers
24 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 ...
0
votes
1answer
7 views

jshint conflicting with jsbeautifier and complaining about indentation

I have a jsbeautifer followed by a jshint task in my Gruntfile, but they seem to have different ideas about where my closing braces should be. I agree with what jsbeautifer produces, but jshint ...
0
votes
1answer
14 views

JSHint error when running Grunt with QUnit

I am running a Grunt build with JSHint and QUnit. On my first test run I get the following: Running "jshint:files" (jshint) task Linting test/libs/qunit-1.11.0.js...ERROR [L661:C22] W069: ['throws'] ...
-1
votes
2answers
21 views

JSHint: Allow empty return statements with ASI

In my JavaScript I want to have a function exit early if certain conditions are not met, like in the following example. (function () { var something = false if (!something) return ...
1
vote
1answer
53 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
1answer
24 views

Is it possible and reasonable to convince JSHint to accept a single line `do` loop?

This is clear (IMO) and valid javascript: do var playerId = newPlayerId(); while(playerId in players); JSHint complains that it expected a { before playerId. Is there any way to disable this ...
0
votes
1answer
44 views

grunt-contrib-jshint dont complain about console.log

With the following setting the jsHint dont complain about console.log statements while still reports debugger statements: jshint: { files: [ 'Gruntfile.js', 'js/**/*.js', ...
9
votes
1answer
259 views

javascript: cyclomatic complexity of the wrapper function

Most of my javascript code files look like this: (function() { var Foo = function() { ... }; var Bar = function() { ... }; ... }()); I've tried a number of tools that calculate ...
0
votes
1answer
62 views

grunt watch ignored jshint options

I had used grunt-contrib-watch for months in my project. But since last week it is corrupt. I used it to watch for file changes and launch jshint or less task. All works fine. But today grunt watch ...
-1
votes
1answer
66 views

JSHINT: how to diable the warning 'define' is not defined

I uses RequireJS AMD in my project. When i run jshint on my project, it throws error like In AMD Scripts 'define' is not defined. In Mocha test cases 'describe' is not defined. 'it' is not ...
2
votes
1answer
73 views

JSHINT: how to disable the warning Missing space after 'function'

I got warning in jshint '[L76:C24] Missing space after 'function'' I follows Nicholas Zakkas Maintainable javascript styles where there is no space after function. How to remove this warning in ...
1
vote
1answer
59 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 ...
0
votes
1answer
45 views

JSHint Eclipse Plugin Predefined Variables Throwing Not Defined Warning

After a lot of troubleshooting, I've simplified my test case to just this... I'm using only a brand new download of Eclipse Juno and the JSHint plugin. Then I start a new project. The checkbox ...
1
vote
2answers
49 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 ...
11
votes
2answers
148 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: ...
0
votes
1answer
16 views

How do I configure JSHint with Adsafe?

Does anybody know how to configure JShint with the safe and adsafe options? I went through http://www.jshint.com/docs/ but didn't find anysuch option.
0
votes
4answers
49 views

Is it safe to change == to === according to jshint's error detection without further checking

I'm checking JavaScript code based on JSHint tool. This tool detected lots of errors about using "===" instead of "==". My question is that Is it safe to just follow what JSHint said? Do I need to ...
0
votes
1answer
52 views

Unresolved function in jsHint

"use strict"; var express = require('express'); var register = require('./routes/register'); New to jshint I am getting error for require() as Unresolved function or method require()
0
votes
1answer
78 views

jshint complains: 'Ember' is not defined

I have a standard Ember main.js file, which starts like this: this.App = Ember.Application.create({ LOG_TRANSITIONS: true, VERSION: '1.0.0', ready: function () { console.log('App ...
0
votes
1answer
70 views

Where are JSHint errors logged?

I just started messing around with Grunt. I have a basic implementation running successfully, minifying my code and running JSHint. It says 0 files lint free, which I've gathered means that all of ...
3
votes
1answer
192 views

Disabling JSHint indentation check only for a specific file

I use jshint with the indent enforcing option enabled and set to 4, and would like to keep it that way for most files in the codebase. In one specific file though, I would like to disable this check. ...
9
votes
4answers
133 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 ...
2
votes
1answer
99 views

github - setup pre-commit hook jshint

I recently started a project on github. I've managed to setup automatic testing after each commit using Travis. But now I would like to setup a pre-commit hook with jshint too. So if jshint reports ...
2
votes
5answers
184 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 ...
2
votes
1answer
43 views

Complete list of default values for JSHint options? [closed]

Where can I get the complete list of JSHint default options. I tried searching online but couldn't find anything. EDIT: I mean a list of default values for all options, in case it wasn't clear :)
0
votes
1answer
35 views

JSHint not recognizing “intended scopes” for variables

Based on the description of the funcscope option in its documentation, it seems JSHint recognizes the utility of the variables being declared in "intended scopes" e.g. control structures etc. (even ...
1
vote
1answer
98 views

Use jshint inside VIM in sync with Yeoman's jshint task

I am using VIM as my text editor and Yeoman to help me with my webapp development workflow. I am already using vim-jshint to help me lint my javascript files from within VIM and I would like to use ...
1
vote
1answer
61 views

Grunt twice for the same task

I would like to run the jshint task twice in GruntJS, but with different options each time. How would I go about doing something like that? Currently, my Gruntfile.js looks like this: 'use strict'; ...
0
votes
0answers
39 views

JSHint incorrectly warns on unescaped hyphen inside character class

I've read several similar questions, however none of the answers provided a way to suppress the warning. However, as is my case, I'm correct, and JSHint isn't, so I'd rather it be quiet. Example: ...
0
votes
0answers
38 views

Codekit ignores .jshintrc

As is fairly common these days, I use AMD modules to organize my JS. So I have a .jshintrc configured in each project accordingly: { "predef": [ "define", "require" ] } On ...
1
vote
1answer
150 views

Need example gruntfile.js that defines a reporter for jshint

I would like to use a custom reporter for jshint in a grunt setting. At the moment I don't have time to become a node.js/grunt expert, so I had hoped to find a sample grunt file that includes a ...
0
votes
1answer
59 views

JsHint, can I target all unused parameters in a function definition instead of just last?

This is more a sanity check idea. Currently unused:true only makes sure the last function parameter is used, but sometimes I want to make sure that I'm using what everything passed in. Is there an ...
0
votes
1answer
79 views

How to configure JSHint from within Coffeescript files?

When programming in Javascript it is possible to configure JSHint from within Javascript files using the following syntax /* jshint eqnull: true, eqeqeq: false */ Is there any way of setting ...
3
votes
1answer
200 views

Explanation of JSHint's Bad line breaking before '+' error

Can someone explain to me why JSHint complains about the following, window.location.href = String1 + '#' + Sting2 + '=' + String3; With the error, Bad line breaking before '+' error ...
0
votes
0answers
83 views

How to ignore all warnings with jshint?

Is it possible to ignore all warnings with jshint without making such a config file: { ... "-W039": false "-W040": false "-W041": false "-W042": false ... }
3
votes
2answers
2k views

Bad option error compiling Twitter Bootstrap

I just installed and configured the environment to build customized versions of Twitter Bootstrap locally. This what I did: Install node Install npm Install less clone Bootstrap locally run make ...
0
votes
0answers
31 views

get a list of variables in function: jshint

I would like to get a list of all the variables inside a function... Is this possible with jshint? The source/github says the function object returns a vars array. But it doesn't show up in a for ...
1
vote
3answers
175 views

jshint ignore Use '!==' to compare with ''

How can I configure JSHint to ignore this error: Use '!==' to compare with ''. ? I want that this code pass: /*jshint undef: false */ if (a == true) { }
0
votes
2answers
54 views

Can I set jshint options at the function level?

I'm using jshint to monitor my code quality, but I'd like to apply different rules/options to different parts of my code. In particular, there's one function where I'm intentionally and necessarily ...
0
votes
0answers
43 views

Comma first validation with no space

I am building a JSHint set for a JavaScript suite that I am writing. My habit with writing objects is as follows: var obj = { hello: 'World' ,foo: 'Bar' ,name: 'Dave' }; I use Grunt and ...
0
votes
1answer
107 views

coffeescript + jshint = Unused variable: _this

Compiling any code with bare = false and linting it with JShint results in Unused variable: _this. Solutions to this? bare = true should remain, besides I'm pretty happy to have jshint checking for ...
0
votes
1answer
33 views

jshint error with regular expression

Does anyone know why jsHint says this regular expression has a "Bad Escapement"? var regexp = new RegExp('^http(s)?:\/\/([a-z]+\.)?(' + this.opts.domain + ')', 'ig'); It's complaining about the ...
2
votes
1answer
254 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 ...
3
votes
1answer
353 views

How do you configure JSHint options globally in Sublime Text 2?

I'd like to turn off particular warnings globally when using Sublime Text 2's JSHint plugin. For instance, "laxcomma". I tried editing the .jshintrc file in JSHint's Sublime Packages folder, but ...
0
votes
1answer
28 views

jshint not recognizing devel

I'm using jshint and have the following options defined: /*global $, _*/ /*jshint devel:true*/ My understanding is that by having /*jshint devel:true*/ it should allow console and alert, but I ...
1
vote
1answer
133 views

Function declarations should not be placed in blocks. Use a function expression or move the statement to the top of the outer function

I have recently been using JSLint (or JSHint in this particular error) on all my JS code. However i get this error when using this code: Error Function statements should not be placed in blocks.Use ...
1
vote
1answer
92 views

JShint Unescaped '^' error for Javascript Match Regex [duplicate]

Possible Duplicate: Is there a way to make JSLint happy with this regex? I'm just cleaning up my code using JShint and its throwing up an error for this piece of code. if ...
1
vote
2answers
192 views

Vim jshint error “bad line breaking before ','”

I use jshint.vim and in the code like below I get an error "bad line breaking before ','" var a = 5 , b = 10; How can I fix this? I found this question, but I'm not sure how can I use it to fix ...
0
votes
1answer
76 views

JavaScript: Getting rid of three JSHint errors

Please find below a snippet of my Node.JS server code: // Define the user API var API = { list: 'private', login: 'public', logout: 'private', add: 'admin', remove: 'admin', ...
0
votes
2answers
51 views

Why does jshint complain about linebreak within expression?

When passing the following code to jshint, it considers the linebreak in the if-condition to be bad, saying "Bad line breaking before '&&'." if (1 == 1 && true) { ...

1 2 3 4