Linting All JS files in Project Package ::JSHINT

337 Views Asked by At

I am using the gulp task runner. For the static code analysis I am trying to use JsHint. The issue here is that I am able to run only one file at a time.

npm installation has added "gulp-jshint": "~1.11.0", in devDependensies in package.json.

scripts {
     "lint" : "jshint <path/file.js>"
}

This is very tedious to look up for every js file in the project package.

I am looking for ways to lint all my package js files and log their report in a separate file.

1

There are 1 best solutions below

1
On

One minute of googleing got this here http://www.codereadability.com/jshint-with-grunt/#runningjshintonmultiplefilesatonce

So app/**/*.js could do the trick.