angular-material-npfixed
Version:
The Angular Material project is an implementation of Material Design in Angular.js. This project provides a set of reusable, well-tested, and accessible Material Design UI components. Angular Material is supported internally at Google by the Angular.js, M
16 lines (14 loc) • 411 B
JavaScript
var config = require('../config');
var gulp = require('gulp');
var jshint = require('gulp-jshint');
exports.task = function() {
return gulp.src(config.jsFiles)
.pipe(jshint('.jshintrc'))
.pipe(jshint.reporter('jshint-summary', {
fileColCol: ',bold',
positionCol: ',bold',
codeCol: 'green,bold',
reasonCol: 'cyan'
}))
.pipe(jshint.reporter('fail'));
};