properly disable @typescript-eslint/no-explicit-any

This commit is contained in:
wearrrrr 2024-10-28 00:06:30 -05:00
parent 960863a5a2
commit 8ac7847122

View file

@ -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.