Skip to content

Instantly share code, notes, and snippets.

@1fabiopereira
Created July 12, 2017 12:51
Show Gist options
  • Save 1fabiopereira/e83f3c6340e9f40ac3553e10c679a01b to your computer and use it in GitHub Desktop.
Save 1fabiopereira/e83f3c6340e9f40ac3553e10c679a01b to your computer and use it in GitHub Desktop.
config eslint to react-native
{
"parser": "babel-eslint",
"env": {
"browser": true
},
"plugins": [
"react"
],
"extends": [
"eslint:recommended",
"plugin:react/recommended"
],
"rules": {
"no-undef": [0]
}
}
/*
* ------------------------------------- Referências -------------------------------------
* >>> eslint-plugin-react: https://github.com/yannickcr/eslint-plugin-react#list-of-supported-rules
* >>> eslint: http://eslint.org/docs/rules/
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment