Skip to content

Commit

Permalink
Merge pull request #590 from github/arelia/resolve-prettier-violation
Browse files Browse the repository at this point in the history
use single quotes
  • Loading branch information
arelia authored Dec 19, 2024
2 parents 07535ac + b8f9357 commit 8237f3f
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 8237f3f

Please sign in to comment.