Skip to content

Instantly share code, notes, and snippets.

@matchatype
Forked from remy/.eslintignore
Created August 10, 2018 07:38
Show Gist options
  • Save matchatype/66fe4d715074c80420e23008f891acce to your computer and use it in GitHub Desktop.
Save matchatype/66fe4d715074c80420e23008f891acce 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`
{
"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