From cf881741c1bf35ae63bd136dae3cc22fdd3d9f13 Mon Sep 17 00:00:00 2001 From: Homa Wong Date: Sat, 7 Mar 2020 20:08:21 -0800 Subject: [PATCH] chore: disable lint rule temparorily @typescript-eslint/type-annotation-spacing due to https://github.com/typescript-eslint/typescript-eslint/issues/1663 --- .eslintrc.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index 01fb05fd..e72a8759 100755 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -12,7 +12,10 @@ "files": [ "*.ts", "*.tsx" - ] + ], + "rules": { + "@typescript-eslint/type-annotation-spacing": "off" + } } ] }