Skip to content

Instantly share code, notes, and snippets.

@onesmartguy
Created August 14, 2016 23:55
Show Gist options
  • Save onesmartguy/25d5fff0cc40668c22adb2ffdffb98a4 to your computer and use it in GitHub Desktop.
Save onesmartguy/25d5fff0cc40668c22adb2ffdffb98a4 to your computer and use it in GitHub Desktop.
{
"extends": "standard",
"parser": "babel-eslint",
"installedESLint": true,
"plugins": [
"standard",
"react"
],
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"rules": {
"react/jsx-uses-react": "error",
"react/jsx-uses-vars": "error",
"indent": [2, "tab"]
},
"settings": {
"react": {
"pragma": "React",
"version": "15.0"
}
},
"globals": {
"fetch": false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment