Created
July 12, 2017 12:51
-
-
Save 1fabiopereira/e83f3c6340e9f40ac3553e10c679a01b to your computer and use it in GitHub Desktop.
config eslint to react-native
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"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