-
-
Save secantsquared/f747d1b7f0663b76dc452c263e904642 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": { | |
| "ecmaVersion": 9, | |
| "ecmaFeatures": { | |
| "jsx": true | |
| }, | |
| "sourceType": "module" | |
| }, | |
| "plugins": ["react"], | |
| "rules": { | |
| "react/prop-types": 0, | |
| "react/jsx-uses-vars": [2], | |
| "no-console": 0 | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment