Skip to content
This repository was archived by the owner on Feb 21, 2025. It is now read-only.

Commit 89bbdf8

Browse files
committed
fix(eslint): arrow fct
1 parent 408710d commit 89bbdf8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ module.exports = (gulp, userConfig, tasks) => {
3838
/* eslint-enable global-require */
3939

4040
// This is a fix fo Gulp, because series and paparallel needs at least one task
41-
gulp.task('nothing-to-do', function (done) { return done(); });
41+
gulp.task('nothing-to-do', done => done());
4242

4343
if (!tasks.clean.length) {
4444
tasks.clean.push('nothing-to-do');

0 commit comments

Comments
 (0)