Skip to content

Instantly share code, notes, and snippets.

@secantsquared
Forked from remy/.eslintignore
Created February 26, 2019 02:41
Show Gist options
  • Select an option

  • Save secantsquared/f747d1b7f0663b76dc452c263e904642 to your computer and use it in GitHub Desktop.

Select an option

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`
{
"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