mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 04:14:21 +08:00
14
gulpfile.js
14
gulpfile.js
@ -876,3 +876,17 @@ gulp.task('tooling', function(){
|
||||
.pipe(gulp.dest('dist'));
|
||||
})
|
||||
});
|
||||
|
||||
|
||||
/**
|
||||
* TS LINT
|
||||
*/
|
||||
gulp.task("tslint", function() {
|
||||
var tslint = require("gulp-tslint");
|
||||
gulp.src([
|
||||
'ionic/**/*.ts',
|
||||
'!ionic/components/*/test/**/*',
|
||||
'!ionic/util/test/*'
|
||||
]).pipe(tslint())
|
||||
.pipe(tslint.report('verbose'));
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user