Added the eslint rule "no explicit any" -> 0

This commit is contained in:
2023-01-15 03:21:16 +01:00
parent e93e73be89
commit f515d7643b

View File

@ -5,6 +5,7 @@
"parserOptions": { "project": ["./tsconfig.json"] },
"plugins": ["@typescript-eslint"],
"rules": {
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/no-use-before-define": "warn",
"@typescript-eslint/no-unused-vars": "warn"
}