Skip to content

Commit

Permalink
Added new eslint rule related with the last #105 changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ioay committed Jan 10, 2024
1 parent 1cf2309 commit 25884ef
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion dapp/.eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
"@typescript-eslint/no-misused-promises": "off",
"@typescript-eslint/unbound-method": "off",
// Computed name [status] resolves to any value (related to external chakra-ui package)
"@typescript-eslint/no-unsafe-member-access": "off"
"@typescript-eslint/no-unsafe-member-access": "off",
// Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator
"@typescript-eslint/no-floating-promises": "off"
}
}

0 comments on commit 25884ef

Please sign in to comment.