Fix lint for web

Copy overrides from desktop
This commit is contained in:
Manav Rathi 2024-05-01 09:13:41 +05:30
parent abee517f8c
commit 7056e04c02
No known key found for this signature in database

View file

@ -10,4 +10,20 @@ module.exports = {
parserOptions: { project: true },
parser: "@typescript-eslint/parser",
ignorePatterns: [".eslintrc.js"],
rules: {
/* Allow numbers to be used in template literals */
"@typescript-eslint/restrict-template-expressions": [
"error",
{
allowNumber: true,
},
],
/* Allow void expressions as the entire body of an arrow function */
"@typescript-eslint/no-confusing-void-expression": [
"error",
{
ignoreArrowShorthand: true,
},
],
},
};