UNPKG

aurelia-bootstrapper-webpack

Version:

Sets up the default configuration for the aurelia framework and gets you up and running quick and easy.

11 lines (9 loc) 246 B
var gulp = require('gulp'); var paths = require('../paths'); var eslint = require('gulp-eslint'); gulp.task('lint', function() { return gulp.src(paths.source) .pipe(eslint()) .pipe(eslint.format()) .pipe(eslint.failOnError()); });