I am currently utilizing: ESLint version 7.5.0 - operating through the command line for Angular files TypeScript-eslint/eslint-plugin version 3.7.0 TypeScript-eslint/parser version 3.7.0.
Despite having the rule
'@typescript-eslint/explicit-function-return-type': 'off',
disabled, I continue to encounter a warning Missing return type on function
.
Can someone please guide me on what might be causing this rule to remain active even though it is supposedly turned off?
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
plugins: ["@typescript-eslint"],
extends: [
"plugin:@typescript-eslint/recommended",
],
rules: {
'@typescript-eslint/explicit-function-return-type': 'off',
},
};