Skip to content

Latest commit

 

History

History
59 lines (49 loc) · 960 Bytes

prepare-eslint-and-prettier-react.md

File metadata and controls

59 lines (49 loc) · 960 Bytes

Installing ESLint and Prettier locally

yarn add eslint prettier --dev

Add eslint plugin for react and react hooks

yarn add eslint-plugin-react eslint-plugin-react-hooks --dev

Create .prettierrc file inside root dir

{
  "printWidth": 80,
  "trailingComma": "es5",
  "semi": true,
  "tabWidth": 2,
  "singleQuote": true
}

Creating .eslintrc.json file inside root dir

{
  "env": {
    "browser": true,
    "es2021": true
  },
  "extends": [
    "eslint:recommended",
    "plugin:react/recommended",
    "plugin:react-hooks/recommended"
  ],
  "parserOptions": {
    "ecmaFeatures": {
      "jsx": true
    },
    "ecmaVersion": 12,
    "sourceType": "module"
  },
  "plugins": ["react", "react-hooks"],
  "rules": {
    "react/jsx-uses-react": "error",
    "react/jsx-uses-vars": "error",
    "react-hooks/rules-of-hooks": "error",
    "react-hooks/exhaustive-deps": "warn"
  }
}