Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/npm_and_yarn/all-dependencies-fbf…
Browse files Browse the repository at this point in the history
…e069a62
  • Loading branch information
arelia authored Dec 19, 2024
2 parents c91ef17 + 8237f3f commit b63e228
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/rules/async-currenttarget.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ module.exports = {
if (scopeDidWait.has(scope)) {
context.report({
node,
message: "event.currentTarget inside an async function is error prone",
message: 'event.currentTarget inside an async function is error prone',
})
break
}
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/async-preventdefault.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ module.exports = {
if (scopeDidWait.has(scope)) {
context.report({
node,
message: "event.preventDefault() inside an async function is error prone",
message: 'event.preventDefault() inside an async function is error prone',
})
break
}
Expand Down

0 comments on commit b63e228

Please sign in to comment.