rules and overrides

This commit is contained in:
Miodec 2022-02-11 23:39:41 +01:00
parent bfdd86b7e8
commit e0b6e4a954

View file

@ -59,7 +59,8 @@
}
],
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-unused-vars": "off"
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-var-requires": "off"
},
"overrides": [
{
@ -69,7 +70,8 @@
"@typescript-eslint/explicit-function-return-type": ["error"],
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-empty-function": "error",
"@typescript-eslint/no-unused-vars": "error"
"@typescript-eslint/no-unused-vars": "error",
"@typescript-eslint/no-var-requires": "error"
}
}
]