Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save codyromano/f9952afda0f502a49d4fe175b5fa7eb6 to your computer and use it in GitHub Desktop.

Select an option

Save codyromano/f9952afda0f502a49d4fe175b5fa7eb6 to your computer and use it in GitHub Desktop.
{
"env": {
"browser": true,
"commonjs": true,
"es6": true
},
"jsx-uses-vars": true,
"extends": "eslint:recommended",
"parserOptions": {
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"jsx": true
},
"sourceType": "module"
},
"plugins": [
"react"
],
"rules": {
"no-unused-vars": "warn",
"react/jsx-uses-vars": "warn",
"react/jsx-uses-react": "warn",
"linebreak-style": [
"error",
"unix"
],
"semi": [
"error",
"always"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment