From 261943a029552278d08f65e9a102f4ddcf996231 Mon Sep 17 00:00:00 2001 From: teppeis Date: Sun, 7 Apr 2019 13:46:45 +0900 Subject: [PATCH] build: disable rules requiring type information Rules which require type information are too slow. Dislable them with removing parserOptions > project until the performance issue is fixed. Also @see https://github.com/typescript-eslint/typescript-eslint/issues/389 --- .eslintrc.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index da38df84b..b69f81a77 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -8,6 +8,11 @@ ], "rules": { "require-await": 0, - "@typescript-eslint/no-object-literal-type-assertion": 0 + "@typescript-eslint/no-object-literal-type-assertion": 0, + "@typescript-eslint/no-unnecessary-type-assertion": 0, + "@typescript-eslint/restrict-plus-operands": 0 + }, + "parserOptions": { + "project": null } }