forked from halilb/react-native-textinput-effects
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc
More file actions
23 lines (22 loc) · 669 Bytes
/
.eslintrc
File metadata and controls
23 lines (22 loc) · 669 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// extended using airbnb's eslint config
// see: https://github.com/airbnb/javascript/tree/master/packages/eslint-config-airbnb
{
"extends": "airbnb",
"parser": "babel-eslint",
"rules": {
"no-alert": 0,
"no-use-before-define": 0,
"no-return-assign": 0,
"no-mixed-operators": 0,
"no-prototype-builtins": 0,
"react/jsx-closing-bracket-location": 0,
"react/jsx-no-bind": 0,
"react/no-string-refs": 0,
"react/jsx-first-prop-new-line": 0,
"react/jsx-filename-extension": 0,
"react/prefer-stateless-function": 0,
"no-underscore-dangle": 0,
"import/no-unresolved": 0,
"import/no-extraneous-dependencies": 0
}
}