in tasks/check-css.js [87:104]
function checkCSS (path, logger) {
var path = path || "**/*.css";
csslogger = logger.css;
return gulp.src(path)
// .pipe(using({prefix:'Checking', path:'relative', color:'green'}))
.pipe(gulpStylelint({
stylelint: {
"extends": [__dirname+'/../config/.stylelintrc'],
"legacyNumberedSeverities": false,
"rules": {}
},
reporters: [
myStylelintFormatter()
],
}));
}