mirror of
https://github.com/ente-io/ente.git
synced 2025-07-02 21:49:40 +00:00
18 lines
581 B
JavaScript
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",
|
|
},
|
|
},
|
|
];
|