-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
39 lines (38 loc) · 1.03 KB
/
.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
29
30
31
32
33
34
35
36
37
38
39
{
"parser": "babel-eslint",
"extends": "airbnb",
"globals": { "fetch": false },
"rules": {
"react/prefer-stateless-function": 0,
"react/jsx-filename-extension": 0,
"class-methods-use-this": 0,
"no-use-before-define": 0,
"react/forbid-prop-types": 0,
"spaced-comment": 0,
"comma-dangle": 0,
"global-require": 0,
"no-plusplus": 0,
"no-mixed-operators": 0,
"object-curly-newline": 0,
"arrow-parens": 0,
"react/jsx-boolean-value": 0,
"function-paren-newline": 0,
"react/require-default-props": 0,
"radix": 0,
"react/sort-comp": 0,
"no-restricted-globals": 0,
"no-underscore-dangle": 0,
"no-nested-ternary": 0,
"import/no-extraneous-dependencies": 0,
"import/prefer-default-export": 0,
"operator-linebreak":0,
"implicit-arrow-linebreak": 0
},
"settings": {
"import/resolver": {
"node": {
"extensions": [".js", ".android.js", ".ios.js"]
}
}
}
}