Skip to content

Instantly share code, notes, and snippets.

@diego3g
Created February 9, 2018 16:27
Show Gist options
  • Save diego3g/fdc8dc51fd60b88e2e3611fb1b59d380 to your computer and use it in GitHub Desktop.
Save diego3g/fdc8dc51fd60b88e2e3611fb1b59d380 to your computer and use it in GitHub Desktop.
{
"parser": "babel-eslint",
"env": {
"browser": true,
"jest": true
},
"plugins": [
"react-native",
"jsx-a11y",
"import"
],
"extends": [
"airbnb",
"plugin:react-native/all"
],
"rules": {
"react/jsx-filename-extension": [
"error",
{
"extensions": [
".js",
".jsx"
]
}
],
"global-require": "off",
"no-console": "off",
"import/prefer-default-export": "off",
"no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_"
}
]
},
"globals": {
"__DEV__": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment