From fa67c24df3455c97677d55a9ef8003d1924f5fd2 Mon Sep 17 00:00:00 2001 From: Anatoliy Mayorov Date: Sun, 20 Nov 2022 13:59:21 +0300 Subject: [PATCH] chore: eslint - switch no-this-alias error to warn Switch rule to warn for now - too many complicated code that uses `self` alias for this --- .eslintrc.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index 806637ede..fa14dfb7c 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -18,7 +18,7 @@ "no-dupe-else-if": "warn", "no-warning-comments": "warn", "import/no-absolute-path": "warn", - + "@typescript-eslint/no-this-alias": "warn", "@typescript-eslint/no-explicit-any": "off", "@typescript-eslint/ban-ts-comment": "off", "@typescript-eslint/ban-types": "off",