typescript怎么定义回调函数的参数,eslint检查报no-unused-vars

发布于 2022-09-12 22:13:11 字数 2943 浏览 15 评论 0

比如有个函数:

const fn = (str: string, callback: (param: string, result: boolean) => void) => {
    callback(str, true);
};

fn('test', () => {
    //
});

代码规范检查就会报callback的参数

'param' is defined but never used   no-unused-vars
'result' is defined but never used  no-unused-vars

.eslintrc.js

module.exports = {
    root: true,
    env: {
        browser: false,
        es6: true,
        node: true,
        commonjs: true
    },
    extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
    parser: '@typescript-eslint/parser',
    parserOptions: {
        ecmaVersion: 11,
        sourceType: 'module'
    },
    plugins: ['@typescript-eslint'],
    rules: {
        '@typescript-eslint/no-explicit-any': 2,
        '@typescript-eslint/no-this-alias': [
            'error',
            {
                allowDestructuring: true,
                allowedNames: ['self']
            }
        ],
        'indent': [2, 4, { SwitchCase: 1 }],
        'linebreak-style': [0, 'error', 'windows', 'unix'],
        'quotes': [2, 'single'],
        'no-caller': 2,
        'semi': ['error', 'always'],
        'no-multiple-empty-lines': [2, { 'max': 2 }],
        'no-console': 2,
        'no-constant-condition': 2,
        'no-extra-parens': 2,
        'no-extra-semi': 2,
        'no-func-assign': 2,
        'no-mixed-spaces-and-tabs': [2, false],
        'no-trailing-spaces': 1,
        'camelcase': 2,
        'comma-dangle': [2, 'never'],
        'consistent-this': [2, 'self'],
        'no-multi-spaces': 1,
        'no-multi-str': 2,
        'no-redeclare': 2,
        'no-undef': 2,
        'no-sparse-arrays': 2,
        'no-unreachable': 2,
        'no-unused-expressions': 2,
        'no-unused-vars': [2, { 'vars': 'all', 'args': 'after-used' }],
        'no-use-before-define': 2,
        'no-extra-boolean-cast': 2,
        'no-void': 2,
        'no-var': 2,
        'brace-style': [1, '1tbs'],
        'arrow-spacing': 0,
        'comma-spacing': [2, { 'before': false, 'after': true }],
        'comma-style': [2, 'last'],
        'curly': [2, 'all'],
        'default-case': 2,
        'dot-notation': [0, { 'allowKeywords': true }],
        'eqeqeq': 2,
        'generator-star-spacing': 0,
        'init-declarations': 2,
        'key-spacing': [2, { 'beforeColon': false, 'afterColon': true }],
        'newline-after-var': 2,
        'id-match': 0,
        'semi-spacing': [0, { 'before': false, 'after': true }],
        'sort-vars': 0,
        'space-before-function-paren': [0, 'always'],
        'strict': 2,
        'use-isnan': 2,
        'valid-typeof': 2,
        'no-useless-escape': 2,
        'require-atomic-updates': 'off'
    }
};

版本:

"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"eslint": "^7.18.0",

求解!谢谢!!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

空气里的味道 2022-09-19 22:13:11

@typescript-eslint/no-unused-vars使用ts的规则

深者入戏 2022-09-19 22:13:11

改成这样也不行:

type CallbackFn = (param: string, result: boolean) => void

const fn = (str: string, callback: CallbackFn) => {
    callback(str, true);
};

fn('test', () => {
    //
});

这样也是,同样报错:

interface CallbackFn {
    (param: string, result: boolean): void
}

const fn = (str: string, callback: CallbackFn) => {
    callback(str, true);
};

fn('test', () => {
    //
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文