简体   繁体   中英

Can not get rule explicit-function-return-type to turn off in eslint for typescript linting

I am using: eslint v7.5.0 - running on command line for Angular files typescript-eslint/eslint-plugin v3.7.0 typescript-eslint/parser v3.7.0.

I keep getting warning Missing return type on function in spite of the rule disabled '@typescript-eslint/explicit-function-return-type': 'off', .

What am I doing wrong where this rule is not disabled?

module.exports = {
  root: true,
  parser: '@typescript-eslint/parser',
  plugins: ["@typescript-eslint"],
  extends: [
    "plugin:@typescript-eslint/recommended",
  ],
  rules: {
    '@typescript-eslint/explicit-function-return-type': 'off',
  },
};

This is actually regression with eslint and typescript. Bug report filed here https://github.com/typescript-eslint/typescript-eslint/issues/2267

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM