disable eslint warning causing too much noise...will enable them after the fixes are done

This commit is contained in:
Abhinav 2022-11-22 11:58:33 +05:30
parent a82966b342
commit c76a3ee8f6

View file

@ -33,26 +33,26 @@
"after", "after",
{ "overrides": { "?": "before", ":": "before" } } { "overrides": { "?": "before", ":": "before" } }
], ],
"@typescript-eslint/no-unsafe-member-access": "warn", "@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-unsafe-return": "warn", "@typescript-eslint/no-unsafe-return": "off",
"@typescript-eslint/no-unsafe-assignment": "warn", "@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-inferrable-types": "warn", "@typescript-eslint/no-inferrable-types": "off",
"@typescript-eslint/restrict-template-expressions": "warn", "@typescript-eslint/restrict-template-expressions": "off",
"@typescript-eslint/ban-types": "warn", "@typescript-eslint/ban-types": "off",
"@typescript-eslint/no-floating-promises": "warn", "@typescript-eslint/no-floating-promises": "off",
"@typescript-eslint/no-unsafe-call": "warn", "@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/require-await": "warn", "@typescript-eslint/require-await": "off",
"@typescript-eslint/restrict-plus-operands": "warn", "@typescript-eslint/restrict-plus-operands": "off",
"@typescript-eslint/no-var-requires": "warn", "@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/no-empty-interface": "warn", "@typescript-eslint/no-empty-interface": "off",
"@typescript-eslint/no-misused-promises": "warn", "@typescript-eslint/no-misused-promises": "off",
"@typescript-eslint/no-empty-function": "warn", "@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/explicit-module-boundary-types": "warn", "@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-explicit-any": "warn", "@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unnecessary-type-assertion": "warn", "@typescript-eslint/no-unnecessary-type-assertion": "off",
"react-hooks/rules-of-hooks": "warn", "react-hooks/rules-of-hooks": "off",
"react-hooks/exhaustive-deps": "warn", "react-hooks/exhaustive-deps": "off",
"@next/next/no-img-element": "warn", "@next/next/no-img-element": "off",
"@typescript-eslint/no-unsafe-argument": "warn" "@typescript-eslint/no-unsafe-argument": "off"
} }
} }