boolean-trivia lint rule: Lint for null/undefined too

This commit is contained in:
Andy Hanson
2017-04-07 13:13:39 -07:00
parent 3029b8fe38
commit 7320891933
24 changed files with 92 additions and 68 deletions

View File

@@ -775,7 +775,7 @@ gulp.task("browserify", "Runs browserify on run.js to produce a file suitable fo
});
const finalMap = chain.apply();
file.sourceMap = finalMap;
next(undefined, file);
next(/*err*/ undefined, file);
});
}))
.pipe(sourcemaps.write(".", { includeContent: false }))