Fix lint for web
Copy overrides from desktop
This commit is contained in:
parent
abee517f8c
commit
7056e04c02
1 changed files with 16 additions and 0 deletions
|
@ -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,
|
||||
},
|
||||
],
|
||||
},
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue