Skip to content

Commit

Permalink
chore: disable no-misused-promises rule for attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
Wdyffs committed Dec 15, 2023
1 parent d00edfa commit 9087eff
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,14 @@
"object-curly-spacing": ["error", "always"],
"one-var": ["error", "never"],
"quote-props": 0,
"@typescript-eslint/no-unsafe-assignment": "off"
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-misused-promises": [
2,
{
"checksVoidReturn": {
"attributes": false
}
}
]
}
}

0 comments on commit 9087eff

Please sign in to comment.