Updating eslint rules
This commit is contained in:
@@ -80,7 +80,11 @@ export default [
|
||||
"@typescript-eslint/no-unused-vars": ["warn", {
|
||||
vars: "all",
|
||||
args: "after-used",
|
||||
ignoreRestSiblings: false
|
||||
ignoreRestSiblings: false,
|
||||
argsIgnorePattern: "^_",
|
||||
caughtErrorsIgnorePattern: "^_",
|
||||
destructuredArrayIgnorePattern: "^_",
|
||||
varsIgnorePattern: "^_"
|
||||
}],
|
||||
"@typescript-eslint/no-empty-object-type": "off",
|
||||
"@typescript-eslint/no-require-imports": "off",
|
||||
|
||||
@@ -12,7 +12,6 @@
|
||||
"strictNullChecks": true,
|
||||
"resolveJsonModule": true,
|
||||
"removeComments": true,
|
||||
"noUnusedLocals": true,
|
||||
"outDir": "dist",
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
|
||||
Reference in New Issue
Block a user