react-native-tips
Version:
Helper to show tips when you launch your react-native for the first time
36 lines (35 loc) • 818 B
Plain Text
{
"extends": "airbnb",
"globals": {
"fetch": false
},
"env": {
"jest": true
},
"parserOptions": {
"sourceType": "module",
"ecmaFeatures": {
"experimentalObjectRestSpread": true
}
},
"rules": {
"comma-dangle": 0,
"semi": [2, "never"],
"no-console": 1,
"quotes": [2, "single"],
"react/no-danger": 0,
"class-methods-use-this": 0,
"no-extra-boolean-cast": 0,
"no-mixed-operators": 0,
"no-underscore-dangle": 0,
"object-property-newline": 0,
"import/prefer-default-export": 0,
"import/no-extraneous-dependencies": 0,
"prefer-promise-reject-errors": 0,
"prefer-destructuring": 0,
"react/jsx-filename-extension": 0,
"react/forbid-prop-types": 0,
"react/no-typos": 0,
"no-use-before-define": [2, "nofunc"]
}
}