properly disable @typescript-eslint/no-explicit-any
This commit is contained in:
parent
960863a5a2
commit
8ac7847122
1 changed files with 4 additions and 2 deletions
|
|
@ -13,8 +13,7 @@ module.exports = {
|
|||
"no-unused-vars": "error",
|
||||
"no-undef": "off",
|
||||
"prefer-const": "error",
|
||||
"no-case-declarations": "off",
|
||||
"@typescript-eslint/no-explicit-any": "off",
|
||||
"no-case-declarations": "off"
|
||||
},
|
||||
ignorePatterns: ["env.d.ts"],
|
||||
overrides: [
|
||||
|
|
@ -34,6 +33,9 @@ module.exports = {
|
|||
},
|
||||
plugins: ["@typescript-eslint"],
|
||||
extends: ["plugin:@typescript-eslint/recommended"],
|
||||
rules: {
|
||||
"@typescript-eslint/no-explicit-any": "off",
|
||||
}
|
||||
},
|
||||
{
|
||||
// Define the configuration for `<script>` tag.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue