We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello! Thank you for your plugin!)
I have problem. When there are many files, they are not displayed.
gulp.task(JS, async function () { process.env.NODE_ENV = 'production'; //process.env.NODE_ENV = 'development'; return gulp.src(JS_SRC) .pipe(plumber()) .pipe(bro({ transform: [ babelify.configure({ presets: ['@babel/env'] }), ['browserify-postcss', { plugin: ['postcss-import'] }], ['loose-envify'], ['blissify'] ] }) ) .pipe(gulp.dest(JS_DEST)); }); gulp.task(ESLINT, function () { return gulp.src(ESLINT_SRC) .pipe(plumber()) .pipe(eslint()) .pipe(eslint.format()) .pipe(eslint.failAfterError()); }); gulp.task('w', gulp.series('watch', HTML__INDEX, HTML__APP, ESLINT, JS));
async
formatEach
// Additional information https://stackoverflow.com/questions/38825294/gulp-eslint-not-throwing-any-error-on-console
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello! Thank you for your plugin!)
I have problem. When there are many files, they are not displayed.
async
then it worksformatEach
then it works with functionasync
// Additional information
https://stackoverflow.com/questions/38825294/gulp-eslint-not-throwing-any-error-on-console
The text was updated successfully, but these errors were encountered: