From 3e5b6df9c9645594851abecc3bf6bbb84587e430 Mon Sep 17 00:00:00 2001 From: Walidoux Date: Sun, 13 Aug 2023 23:06:04 +0100 Subject: [PATCH] refactor(rules): remove explicit return type in favor of displayHint IDE --- .eslintrc.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index daeb280..6e7f3a0 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -9,6 +9,7 @@ "rules": { "prettier/prettier": "error", "arrow-body-style": "off", - "@typescript-eslint/no-extraneous-class": "off" + "@typescript-eslint/no-extraneous-class": "off", + "@typescript-eslint/explicit-function-return-type": "off" } }