Skip to content

Instantly share code, notes, and snippets.

@mec
Last active October 6, 2017 07:57
Show Gist options
  • Save mec/1d8b268ff4758b29b2bc6281c83d2af4 to your computer and use it in GitHub Desktop.
Save mec/1d8b268ff4758b29b2bc6281c83d2af4 to your computer and use it in GitHub Desktop.
ESLint for React
{
"extends": "semistandard",
"plugins": ["react"],
"settings": {
"react": {
"createClass": "createReactClass",
"pragma": "React",
"version": "16.0",
"flowVersion": "0.53"
}
},
"rules": {
"react/jsx-uses-react": "error",
"react/jsx-uses-vars": "error"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment