-
-
Save miguelcostero/c473def0d132e8613d50e60f33ee619a to your computer and use it in GitHub Desktop.
My Next.js eslint config + `npm install --save-dev eslint eslint-config-airbnb eslint-plugin-react`
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .next | |
| out |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| "env": { | |
| "browser": true, | |
| "es6": true, | |
| "commonjs": true | |
| }, | |
| "extends": "eslint:recommended", | |
| "parserOptions": { | |
| "ecmaFeatures": { | |
| "experimentalObjectRestSpread": true, | |
| "jsx": true | |
| }, | |
| "sourceType": "module" | |
| }, | |
| "plugins": ["react"], | |
| "rules": { | |
| "react/prop-types": 0, | |
| "react/jsx-uses-vars": [2] | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment