First, install gulp-fixmyjs
as a development dependency:
npm install --save-dev gulp-fixmyjs
Then, add it to your gulpfile.js
:
var fixmyjs = require("gulp-fixmyjs");
gulp.src("./src/*.js")
.pipe(fixmyjs({
// JSHint settings here
}))
.pipe(gulp.dest("./src"));
Type: Boolean, Default: false
Enables legacy mode
Type: Boolean, Default: true
Enables looking up the .jshintrc configuration file
Any of the JSHint options will be passed to fixmyjs, and would get precedence over .jshintrc file