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'],
|
semi: ['error', 'always'],
|
||||||
'max-len': ['warn', { code: 120, ignoreComments: true, ignoreUrls: true, ignoreTemplateLiterals: true }],
|
'max-len': ['warn', { code: 120, ignoreComments: true, ignoreUrls: true, ignoreTemplateLiterals: true }],
|
||||||
'max-lines': ['warn', { max: 2000, skipBlankLines: true, skipComments: true }],
|
'max-lines': ['warn', { max: 2000, skipBlankLines: true, skipComments: true }],
|
||||||
|
'@typescript-eslint/no-explicit-any': 'off',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|||||||
@ -5,6 +5,7 @@
|
|||||||
|
|
||||||
/* Linting */
|
/* Linting */
|
||||||
"strict": true,
|
"strict": true,
|
||||||
|
"noImplicitAny": false,
|
||||||
// "noUnusedLocals": true,
|
// "noUnusedLocals": true,
|
||||||
// "noUnusedParameters": true,
|
// "noUnusedParameters": true,
|
||||||
"noFallthroughCasesInSwitch": true,
|
"noFallthroughCasesInSwitch": true,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user