change all erroring out eslint lint to warn to handle later

This commit is contained in:
Abhinav 2022-11-20 17:42:54 +05:30
parent ad2798ee91
commit 4d8c5a41af

View file

@ -47,6 +47,12 @@
"@typescript-eslint/no-var-requires": "warn",
"@typescript-eslint/no-empty-interface": "warn",
"@typescript-eslint/no-misused-promises": "warn",
"@typescript-eslint/no-empty-function": "warn"
"@typescript-eslint/no-empty-function": "warn",
"@typescript-eslint/explicit-module-boundary-types": "warn",
"@typescript-eslint/no-explicit-any": "warn",
"@typescript-eslint/no-unnecessary-type-assertion": "warn",
"react-hooks/rules-of-hooks": "warn",
"react-hooks/exhaustive-deps": "warn",
"@next/next/no-img-element": "warn"
}
}