-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
58 lines (55 loc) · 1.51 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"extends": "airbnb",
"parser": "babel-eslint",
"rules": {
"comma-dangle": ["error", { "functions": "never", "objects": "ignore", "imports": "ignore" }],
"eqeqeq": [2, "allow-null"],
"id-length": 0,
"strict": ["error", "global"],
"no-unused-expressions": [
2,
{ "allowShortCircuit": true, "allowTernary": true }
],
"no-unused-vars": ["error", { "args": "after-used" }],
"prefer-template": 0,
"max-len": [
"error",
{
"code": 100,
"ignoreStrings": true,
"ignoreUrls": true,
"ignoreTemplateLiterals": true
}
],
"no-param-reassign": [2, { "props": false }],
"no-underscore-dangle": 0,
"new-cap": [
"error",
{ "capIsNewExceptions": ["ImmutableMap", "ImmutableList"] }
],
"no-nested-ternary": 0,
"no-return-assign": ["error", "except-parens"],
"prefer-destructuring": 0,
"object-curly-newline": 0,
"function-paren-newline": 0,
"class-methods-use-this": 0,
"no-mixed-operators": 0,
"radix": 0,
"jsx-a11y/click-events-have-key-events": 0,
"react/jsx-boolean-value": [1, "always"],
"react/prop-types": 0,
"react/prefer-stateless-function": 0,
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
"react/forbid-prop-types": 0,
"react-native/no-unused-styles": 2
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"plugins": ["react", "react-native"],
"env": {
"browser": true,
"node": true
}
}