From 3878cad92f63210ff97ab881134f64a3a62ea17d Mon Sep 17 00:00:00 2001 From: Trivikram Kamat <16024985+trivikr@users.noreply.github.com> Date: Mon, 25 Mar 2019 12:45:58 -0700 Subject: [PATCH] Disable "@typescript-eslint/explicit-function-return-type" Refs: https://github.com/typescript-eslint/typescript-eslint/pull/260 ToDo: Enable when fix is available --- .eslintrc.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index 027398b..af1debc 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -11,6 +11,7 @@ module.exports = { "prettier/@typescript-eslint" ], rules: { - "@typescript-eslint/no-unused-vars": "off" + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/explicit-function-return-type": "off" } };