Skip to content

Commit

Permalink
try and fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Muttley committed Nov 25, 2023
1 parent 437b168 commit 03dca3f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions utils/javascript.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ async function compileJavascript() {
}
export const compile = compileJavascript;

// Use eslint to check for formatting issues
//
function lintJavascript() {
const tasks = SRC_LINT_PATHS.map(path => {
const src = path.endsWith("/")
Expand All @@ -37,7 +35,7 @@ function lintJavascript() {

return gulp
.src(src)
.pipe(eslint({ fix: false }))
.pipe(eslint({ fix: true }))
.pipe(eslint.format())
.pipe(
gulpIf(
Expand Down

0 comments on commit 03dca3f

Please sign in to comment.