Skip to content

Commit

Permalink
Fix missed eslint.config.mjs setting
Browse files Browse the repository at this point in the history
  • Loading branch information
anoek committed Jul 23, 2024
1 parent a651b82 commit 4870e8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ function watch_eslint(done) {
function eslint() {
return gulp
.src(ts_sources)
.pipe(gulpEslint({ overrideConfigFile: ".eslint.config.js" }))
.pipe(gulpEslint({ overrideConfigFile: "eslint.config.mjs" }))
.pipe(gulpEslint.format())
.pipe(gulpEslint.failAfterError());
}
Expand Down

0 comments on commit 4870e8f

Please sign in to comment.