HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/Velosophe/carparkcannonball.cc/wwwroot/gulp/helper-tasks/jshint.js
// Gulp JSHint task
// `gulp jshint` - Lints configuration JSON and project JS.
module.exports = function ($, gulp, manifest, settings) {
    return function () {

        var project     = manifest.getProjectGlobs();

        return gulp.src([
            //'bower.json', 'gulpfile.js'
        ].concat(project.js))
            .pipe($.changed('jshint'))
            .pipe($.jshint())
            .pipe($.jshint.reporter('jshint-stylish'))
            .pipe($.if(settings.failJshint, $.jshint.reporter('fail')));
        };
};