Skip to content

Latest commit

 

History

History
37 lines (30 loc) · 1.05 KB

known-issues.md

File metadata and controls

37 lines (30 loc) · 1.05 KB

Bug occurs due to mismatch between @typescript-eslint versions in react-scripts, or else we have to override the rules

 {
            "files": ["**/*.ts", "**/*.tsx"],
            "plugins": ["@typescript-eslint"],
            "rules": {
              // https://stackoverflow.com/questions/63818415/react-was-used-before-it-was-defined
              "no-use-before-define": "off",
              "@typescript-eslint/no-use-before-define": ["error"]
            }
},

We need to add the jest entry to the environment

"env": {
        "jest": true,
},

Warning: React version not specified in eslint-plugin-react settings. See https://github.com/yannickcr/eslint-plugin-react#configuration .

{
  "settings": {
    "react": {
      "version": "detect"
    }
  }
}