Tagged Questions
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',
...
0
votes
1answer
56 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 ...
0
votes
1answer
68 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 ...
1
vote
1answer
59 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
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
60 views
jshint functions with dots in the name
I'm running jshint on a javascript file, and some of the functions have dots in their names (as a way of namespacing). In particular, I'm using the d3 library, and I have a lot of code that looks like
...
2
votes
1answer
393 views
How do I lint two sets of files with different JSHint options? (grunt.js)
I have some JavaScript files that should be linted assuming a Node environment and others that should be linted assuming a browser environment. How do I lint these files with different JSHint options? ...
6
votes
3answers
973 views
Using JSLint/Hint with requirejs
I'm currently setting up a automated build script (with gruntjs) for a require.js driven project . Therefor I would like to run jslint/jshint on all required files before concatenating and minifying ...
4
votes
2answers
801 views
How do I resolve dependencies when linting single javascript files with grunt?
I want to separate my application logic into multiple Javascript files for sanity and developer friendliness, stored in the /src folder. These files should be linted and concatenated into /dist/app.js ...
2
votes
2answers
606 views
Using JSHint with Express.js / 'delete' (a reserved word)
I'm using Express.js ontop of Node.js to create RESTful API, and using grunt to watch my files and automatically lint my JavaScript.
Every time I use the delete function, it gets flagged by JSHint:
...
