From 5608fdff9ead8308e1fbef598d0b81c20d7175ff Mon Sep 17 00:00:00 2001 From: Labhansh Agrawal Date: Sat, 12 Oct 2019 01:18:23 +0530 Subject: [PATCH] Disable some eslint typescript rules Will be re-enabled when we have good type coverage --- package.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 6e96604d..5e044402 100644 --- a/package.json +++ b/package.json @@ -106,7 +106,12 @@ "extends": [ "plugin:@typescript-eslint/recommended", "prettier/@typescript-eslint" - ] + ], + "rules": { + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-non-null-assertion": "off" + } } ] },