From 117e9ec708de4f58e89f76c00dd1f3a4bbc50c83 Mon Sep 17 00:00:00 2001 From: David Mehren Date: Sat, 20 Feb 2021 21:27:37 +0100 Subject: [PATCH] ESLint: Remove @typescript-eslint/explicit-function-return-type rule The rule does not seem to be enabled at all, as it is not part of the recommended set. Signed-off-by: David Mehren --- .eslintrc.js | 1 - 1 file changed, 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index 35c52642b..931ba079b 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -20,7 +20,6 @@ module.exports = { jest: true, }, rules: { - '@typescript-eslint/explicit-function-return-type': 'off', '@typescript-eslint/no-unused-vars': [ 'warn', { argsIgnorePattern: '^_+$' },