Skip to content

Commit

Permalink
fix: remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
scolladon committed Oct 17, 2023
1 parent fcdf25b commit bb05f30
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ module.exports = {
'no-compare-neg-zero': 'error',
'no-cond-assign': 'error',
'no-confusing-arrow': 'off',
'no-console': 'error',
'no-const-assign': 'error',
'no-constant-condition': 'error',
'no-control-regex': 'error',
Expand Down
1 change: 1 addition & 0 deletions __tests__/perf/bench.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ suite
)
})
.on('cycle', event => {
// eslint-disable-next-line no-console
console.log(String(event.target))
})
.run()
1 change: 0 additions & 1 deletion src/utils/fsHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ export const copyFiles = async (config: Config, src: string) => {
}
} catch (e) {
/* empty */
console.log(e)
}
}

Expand Down

0 comments on commit bb05f30

Please sign in to comment.