eslintrc.js |未找到规则“simple-import-sort/sort”的定义 simple-import-sort/sort

问题描述

这是我的 eslintrc.js 文件

module.exports = {
    "env": {
        "browser": true,"es2021": true
    },"extends": [
        "eslint:recommended","plugin:react/recommended"
    ],"parserOptions": {
        "ecmaFeatures": {
            "jsx": true
        },"ecmaVersion": 12,"sourceType": "module"
    },"plugins": [
        "react","simple-import-sort","eslint-plugin-simple-import-sort",],"rules": {
        /*code removed*/
        'sort-imports': 'off','lines-between-class-members': [
            'error','always'
        ],'simple-import-sort/sort': [
            'error',// fixed by reporting in https://github.com/lydell/eslint-plugin-simple-import-sort/issues/54
            {
                groups: [
                    [
                        '^@?[a-z]'
                    ],// anything that starts with @ and lowercase
                    [
                        '^[^.\\u0000]'
                    ],// anything but a dot and side effect imports
                    [
                        '^\\.'
                    ],// starting with dot
                    [
                        '^\\u0000'
                    ] // side effect imports
                ]
            }
        ],'react/jsx-curly-spacing': [
            2,{
                when: 'always',allowMultiline: false,children: true
            }
        ],'max-len': [
            'error',{
                code: 150,ignorePattern: 'logger.'
            }
        ]
    },"parser": "babel-eslint"
};

已经尝试过:Definition for rule 'simple-import-sort/sort' was not found simple-import-sort/sort

https://github.com/lydell/eslint-plugin-simple-import-sort#usage

有人可以推荐吗?

谢谢。

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)