-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
28 lines (28 loc) · 864 Bytes
/
.eslintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"extends": "airbnb",
"rules": {
"arrow-body-style": 0,
"globl-require": 0,
"object-shorthand": 0,
"quote-props": ["error", "consistent"],
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
"comma-dangle": ["error", "never"],
"function-paren-newline": ["error", "consistent"],
"no-restricted-syntax": 0,
"import/prefer-default-export": 0,
"no-use-before-define": 0,
"object-curly-newline": 0,
"consistent-return": 0,
"react/prop-types": 0,
"react/no-did-mount-set-state": 0,
"react/prefer-stateless-function": 0,
"react/jsx-wrap-multilines": 0,
"react/no-array-index-key": 0,
"react/jsx-curly-brace-presence": [true, "always"]
},
"globals": {
"fetch": false,
"alert": false,
"__DEV__": false
}
}