Skip to content

Instantly share code, notes, and snippets.

@leasual
Forked from sunnylqm/.eslintrc
Created January 10, 2017 14:16
Show Gist options
  • Save leasual/6edc1a3cdf571a7b0568b9d0951ea926 to your computer and use it in GitHub Desktop.
Save leasual/6edc1a3cdf571a7b0568b9d0951ea926 to your computer and use it in GitHub Desktop.
eslint for reactnative
{
"extends": "airbnb",
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true,
"mocha": true
},
"rules": {
// Disable for __DEV__, __SERVER__ usage.
"no-undef" : 0,
// Disable for console/alert
"no-console": 0,
"no-alert": 0,
"indent": [2, 2, {"SwitchCase": 1}]
},
"plugins": [
"react", "import"
],
"settings": {
"import/parser": "babel-eslint",
"import/resolve": {
"moduleDirectory": ["node_modules", "src"]
}
},
"globals": {
"__DEV__": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment