简体   繁体   English

启用 eslint-react-hooks 会关闭所有 eslint 规则

[英]enabling eslint-react-hooks turns off all eslint rules

I am trying to get react-hooks rules for eslint, but it doesn't seem to be working with my setup (VSCode, CRA, airbnb, tslint, prettier).我正在尝试为 eslint 获取react-hooks规则,但它似乎不适用于我的设置(VSCode、CRA、airbnb、tslint、更漂亮)。

Here's my.eslintrc.json before it breaks:这是 my.eslintrc.json 在中断之前:

{
  "env": {
    "browser": true,
    "es6": true,
    "jest": true
  },
  "extends": ["plugin:react/recommended", "airbnb", "prettier"],
  "globals": {
    "Atomics": "readonly",
    "SharedArrayBuffer": "readonly"
  },
  "parser": "@typescript-eslint/parser",
  "parserOptions": {
    "ecmaFeatures": {
      "jsx": true
    },
    "ecmaVersion": 2020,
    "sourceType": "module"
  },
  "plugins": ["react", "@typescript-eslint"],
  "rules": {
    "react/jsx-filename-extension": [1, { "extensions": [".jsx", ".tsx"] }]
  }
}

Here are my devDependencies :这是我的devDependencies

  "devDependencies": {
    "@testing-library/jest-dom": "^5.5.0",
    "@testing-library/react": "^10.0.3",
    "@testing-library/user-event": "^10.1.0",
    "@types/jest": "^25.2.1",
    "@types/node": "^13.13.4",
    "@types/react": "^16.9.34",
    "@types/react-dom": "^16.9.7",
    "@typescript-eslint/eslint-plugin": "^2.30.0",
    "@typescript-eslint/parser": "^2.30.0",
    "eslint": "^6.8.0",
    "eslint-config-airbnb": "^18.1.0",
    "eslint-config-prettier": "^6.11.0",
    "eslint-plugin-import": "^2.20.2",
    "eslint-plugin-jsx-a11y": "^6.2.3",
    "eslint-plugin-prettier": "^3.1.3",
    "eslint-plugin-react": "^7.19.0",
    "eslint-plugin-react-hooks": "^3.0.0",
    "prettier": "^2.0.5",
    "typescript": "~3.8.3"
  },

Then I tried adding the following to extends in .eslintrc :然后我尝试在extends中添加以下.eslintrc

"extends": ["plugin:react/recommended", "plugin:react-hooks/recommended", "airbnb", "prettier"],

I also tried placing "plugin:react-hooks/recommended" in a difference place in the array.我还尝试将"plugin:react-hooks/recommended"放在数组中的不同位置。 No matter what I do, it will break all other lint rules, including its own.无论我做什么,它都会破坏所有其他 lint 规则,包括它自己的规则。

I also tried adding the following to plugins and rules :我还尝试将以下内容添加到pluginsrules中:

"plugins": ["react", "react-hooks", "@typescript-eslint"],
"rules": {
  // ...
  "react-hooks/rules-of-hooks": "error",
  "react-hooks/exhaustive-deps": "warn"
}

And of course, the test code for checking the lint rules:当然,检查 lint 规则的测试代码:

  const [a, b] = React.useState("Hey");

  React.useEffect(() => {
    React.useMemo(() => {}, []);
    if (a) b("Yeppp");
    if (props.what) console.log(props.what);
    exampleMethod();
  }, []);

  const exampleMethod = () => {};

EDIT: Forgot to mention I also tried to use airbnb/hooks in extends as well:编辑:忘了提到我也尝试在extends中使用airbnb/hooks

"extends": ["plugin:react/recommended", "airbnb", "airbnb/hooks", "prettier"],

I found the solution so I am answering my own question.我找到了解决方案,所以我正在回答我自己的问题。

The eslint-plugin-react-hooks docs says if using Create React App, to make sure NOT to add the module directly in package.json . eslint-plugin-react-hooks文档说如果使用 Create React App,请确保不要直接在package.json中添加模块。
Hence, the solution is to remove eslint-plugin-react-hooks from devDependencies .因此,解决方案是从devDependencies中删除eslint-plugin-react-hooks

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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