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-unused-vars": "error",
|
||||||
"no-undef": "off",
|
"no-undef": "off",
|
||||||
"prefer-const": "error",
|
"prefer-const": "error",
|
||||||
"no-case-declarations": "off",
|
"no-case-declarations": "off"
|
||||||
"@typescript-eslint/no-explicit-any": "off",
|
|
||||||
},
|
},
|
||||||
ignorePatterns: ["env.d.ts"],
|
ignorePatterns: ["env.d.ts"],
|
||||||
overrides: [
|
overrides: [
|
||||||
|
|
@ -34,6 +33,9 @@ module.exports = {
|
||||||
},
|
},
|
||||||
plugins: ["@typescript-eslint"],
|
plugins: ["@typescript-eslint"],
|
||||||
extends: ["plugin:@typescript-eslint/recommended"],
|
extends: ["plugin:@typescript-eslint/recommended"],
|
||||||
|
rules: {
|
||||||
|
"@typescript-eslint/no-explicit-any": "off",
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// Define the configuration for `<script>` tag.
|
// Define the configuration for `<script>` tag.
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue