ente/web/packages/accounts/eslint.config.mjs
Manav Rathi 1c1fe7f1df
Scope
2025-02-26 14:50:16 +05:30

18 lines
581 B
JavaScript

import config from "@/build-config/eslintrc-react.mjs";
export default [
...config,
{
rules: {
/* TODO: */
"@typescript-eslint/no-unnecessary-condition": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unsafe-return": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-unsafe-argument": "off",
"@typescript-eslint/no-unsafe-call": "off",
},
},
];