function checkTS()

in tasks/check-ts.js [38:49]


function checkTS (path) {
    path = path || "**/*.ts";

    return gulp.src(path)
        .pipe(using({prefix:'Checking', path:'relative', color:'green'}))
        .pipe(gulptslint({
            configuration: "./config/tslint.json"
        }))
        .pipe(gulptslint.report("verbose", {
            emitError: false
        }));
}