chore: update ESLint and TypeScript configurations to disable no-explicit-any and noImplicitAny rules
This commit is contained in:
parent
4dfb38be60
commit
e44b53f5c0
@ -45,6 +45,7 @@ export default [
|
||||
semi: ['error', 'always'],
|
||||
'max-len': ['warn', { code: 120, ignoreComments: true, ignoreUrls: true, ignoreTemplateLiterals: true }],
|
||||
'max-lines': ['warn', { max: 2000, skipBlankLines: true, skipComments: true }],
|
||||
'@typescript-eslint/no-explicit-any': 'off',
|
||||
},
|
||||
},
|
||||
];
|
||||
|
@ -5,6 +5,7 @@
|
||||
|
||||
/* Linting */
|
||||
"strict": true,
|
||||
"noImplicitAny": false,
|
||||
// "noUnusedLocals": true,
|
||||
// "noUnusedParameters": true,
|
||||
"noFallthroughCasesInSwitch": true,
|
||||
|
Loading…
x
Reference in New Issue
Block a user