From 526906f744d6b24d9a032ea266e4e32093905d54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adina=20=C8=9Aeudan?= Date: Mon, 20 Jun 2022 19:41:09 +0300 Subject: [PATCH] RED-3800: ESLint rules --- apps/red-ui/.eslintrc.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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" + } } ] }