ESLint broken:带有建议的规则必须设置"meta".hasSuggestions属性设置



我正在使用VSCode,当我将'react-hooks/exhaustive-deps': 'warn'行添加到我的.eslintrc.js中时,我在ESLint输出中得到以下内容:

Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting
C:Usersfilepath.jsx:72 Rule: "react-hooks/exhaustive-deps"

这打破了所有其他的限制。我尝试添加以下到我的。eslintrc.js:

meta: {
hasSuggestions: true
},

给出如下错误:

UnhandledPromiseRejectionWarning: Error: ESLint configuration in .eslintrc.js is invalid:
- Unexpected top-level property "meta".

如有任何帮助,不胜感激。

这是我的。eslintrc.js:

module.exports = {
env: {
browser: true,
es2021: true,
},
extends: ['eslint:recommended', 'plugin:react/recommended', 'plugin:react-hooks/recommended'],
settings: {
'react': {
'version': 'detect'
}
},
parserOptions: {
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 13,
sourceType: 'module',
},
plugins: ['react-hooks', 'react'],
rules: {
'react/prop-types': [0],
quotes: ['error', 'single'],
semi: [1],
'react/jsx-indent': [1],
'no-multi-spaces': [1],
'indent': [2],
'react/jsx-newline': [2, { prevent: true }],
'no-trailing-spaces': [1],
'no-multiple-empty-lines': [1, { max: 1 }],
'space-infix-ops': [1],
'object-curly-spacing': [1, 'always'],
'comma-spacing': [1],
'react-hooks/rules-of-hooks': 'error',
'react/self-closing-comp': 1,
'react/jsx-closing-tag-location': 1,
'no-unreachable': 1,
'react-hooks/exhaustive-deps': 'warn'
},
};

这是我的package.json:

{
"name": "app",
"private": true,
"dependencies": {
"@babel/preset-react": "^7.14.5",
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@mui/icons-material": "^5.0.4",
"@mui/material": "^5.0.3",
"@mui/styles": "^5.0.1",
"@rails/actioncable": "^6.1.4-1",
"@rails/activestorage": "^6.1.4-1",
"@rails/ujs": "^6.1.4-1",
"@rails/webpacker": "^6.0.0-rc.5",
"babel-plugin-macros": "^3.1.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-on-rails": "12.3.0",
"react-player": "^2.9.0",
"turbolinks": "^5.2.0",
"webpack": "^5.53.0",
"webpack-cli": "^4.8.0"
},
"version": "0.1.0",
"babel": {
"presets": [
"./node_modules/@rails/webpacker/package/babel/preset.js"
]
},
"browserslist": [
"defaults"
],
"devDependencies": {
"@webpack-cli/serve": "^1.6.0",
"eslint": "^8.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"webpack-dev-server": "^4.3.1"
}
}

ESLint 8.0.0对提供建议的规则进行了突破性的更改。如果你的.eslintrc.js使用的规则在此更改后没有更新,那么你无法将任何东西放入你的.eslintrc.js中使其工作。

你能做的:

  • 使用ESLint 7,直到插件更新到ESLint 8。
  • eslint-plugin-react-hooks的情况下,违规规则已经被更新了(在GitHub上查看这一行),只是从那以后没有一个稳定的发布包。然而,每天都有alpha版本发布,在撰写本文时,最新版本是4.2.1-alpha-c3a19e5af-20211014。如果你真的需要ESLint 8和这个插件,你可以使用alpha版本,直到下一个稳定版本出来。

我不得不删除规则"react/require-default-props": "off",来解决这个问题。这不是一个完整的修复,但目前在react v18

从4中碰撞反应脚本后出现相同的错误。X到5.0.1。因为我们还有eslint-config-react-app"在我们的包裹里。Json,修复的方法是也将它撞到当前。在本例中为7.0.1。希望这篇文章能帮到你。

eslint-config-react-appnpm包从5.2.1更新到6.0.0对我有效!

相关内容

  • 没有找到相关文章

最新更新