From 27c722148303cb2ddad04a1b30443110364c6f56 Mon Sep 17 00:00:00 2001 From: Manav Rathi Date: Tue, 19 Nov 2024 12:28:18 +0530 Subject: [PATCH] Swap --- web/packages/accounts/.eslintrc.js | 43 +++++++++++++++++++++++------- 1 file changed, 33 insertions(+), 10 deletions(-) diff --git a/web/packages/accounts/.eslintrc.js b/web/packages/accounts/.eslintrc.js index 556f3b6392..38562301c4 100644 --- a/web/packages/accounts/.eslintrc.js +++ b/web/packages/accounts/.eslintrc.js @@ -1,13 +1,36 @@ module.exports = { - // When root is set to true, ESLint will stop looking for configuration files in parent directories. - // This is required here to ensure desktop picks the right eslint config, where this app is - // packaged as a submodule. - root: true, - extends: ["@ente/eslint-config"], - parser: "@typescript-eslint/parser", - parserOptions: { - tsconfigRootDir: __dirname, - project: "./tsconfig.json", + extends: ["@/build-config/eslintrc-react"], + rules: { + /* TODO: + * "This rule requires the `strictNullChecks` compiler option to be + * turned on to function correctly" + */ + "@typescript-eslint/prefer-nullish-coalescing": "off", + "@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", + /** TODO: Disabled as we migrate, try to prune these again */ + "@typescript-eslint/no-floating-promises": "off", + "@typescript-eslint/no-unsafe-enum-comparison": "off", + "@typescript-eslint/no-unnecessary-type-assertion": "off", + "@typescript-eslint/array-type": "off", + "@typescript-eslint/no-empty-function": "off", + "@typescript-eslint/no-unnecessary-template-expression": "off", + "@typescript-eslint/consistent-indexed-object-style": "off", + "@typescript-eslint/prefer-promise-reject-errors": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/dot-notation": "off", + "@typescript-eslint/require-await": "off", + "@typescript-eslint/no-var-requires": "off", + "@typescript-eslint/prefer-optional-chain": "off", + "@typescript-eslint/ban-types": "off", + "@typescript-eslint/no-misused-promises": "off", + "react-hooks/exhaustive-deps": "off", + "react-hooks/rules-of-hooks": "off", + "react-refresh/only-export-components": "off", }, - ignorePatterns: [".eslintrc.js"], };