Skip to main content

react

The configuration settings for basic react projects

ESLint Configuration
{  "env": {    "jest": true  },  "extends": [    "airbnb",    "./typescript",    "plugin:jest/recommended",    "plugin:jsx-a11y/recommended",    "./rules/filenames",    "./rules/sortkeys",    "./rules/react",    "./rules/prettier"  ],  "plugins": [    "jest",    "jsx-a11y"  ],  "rules": {    "jsx-a11y/href-no-hash": "off"  },  "settings": {    "react": {      "version": "detect"    }  }}