diff --git a/apps/red-ui/.eslintrc.json b/apps/red-ui/.eslintrc.json index e58ac599b..a4c08896a 100644 --- a/apps/red-ui/.eslintrc.json +++ b/apps/red-ui/.eslintrc.json @@ -8,7 +8,14 @@ "parserOptions": { "project": ["apps/red-ui/tsconfig.json"] }, - "extends": ["plugin:@typescript-eslint/recommended", "plugin:@typescript-eslint/recommended-requiring-type-checking"] + "extends": ["plugin:@typescript-eslint/recommended", "plugin:@typescript-eslint/recommended-requiring-type-checking"], + "rules": { + "@typescript-eslint/no-unsafe-return": "off", + "@typescript-eslint/no-unsafe-assignment": "off", + "@typescript-eslint/no-unsafe-member-access": "off", + "@typescript-eslint/no-unsafe-call": "off", + "@typescript-eslint/unbound-method": "off" + } } ] }