Skip to content

Commit

Permalink
Fix eslint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
vladshcherbin committed Sep 8, 2024
1 parent d70b1ec commit d1da146
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/fixtures/src/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export default function () {
export default function hey() {
return 'hey'
}
2 changes: 1 addition & 1 deletion tests/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import del from '../src'
process.chdir(`${__dirname}/fixtures`)

function sleep(ms) {
return new Promise((resolve) => setTimeout(resolve, ms))
return new Promise((resolve) => { setTimeout(resolve, ms) })
}

async function build(options) {
Expand Down

0 comments on commit d1da146

Please # to comment.