Skip to content

Instantly share code, notes, and snippets.

@roberthamel
Created September 6, 2017 19:30
Show Gist options
  • Save roberthamel/169a057826ca3d8050e592c2be99ce78 to your computer and use it in GitHub Desktop.
Save roberthamel/169a057826ca3d8050e592c2be99ce78 to your computer and use it in GitHub Desktop.
React Native eslint config
{
"extends": "airbnb",
"parser": "babel-eslint",
"env": {
"browser": true
},
"plugins": [
"react"
],
"rules": {
"react/jsx-filename-extension": [
2,
{
"extensions": [
".js",
".jsx"
]
}
],
"react/forbid-prop-types": [
0
],
"react/require-default-props": [
0
],
"global-require": [
0
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment