import {src, dest, watch, parallel, series} from 'gulp';
import eslint from 'gulp-eslint';
export const bEsLint = () => src('src/js/**/*.js')
.pipe(eslint())
.pipe(eslint.format());
// Watch Task
export const devWatch = () => {
watch('src/js/**/*.js', bEsLint);
};
export default devWatch;