-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
.eslintrc
84 lines (84 loc) · 2.63 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"extends": "airbnb",
"parser": "@babel/eslint-parser",
"plugins": ["lodash"],
"parserOptions": {
"requireConfigFile": false
},
"rules": {
"no-multiple-empty-lines": 0,
"no-mixed-operators": 0,
"no-redeclare": 0,
"arrow-parens": 0,
"camelcase": 1,
"class-methods-use-this": 0,
"comma-dangle": ["error", {
"arrays": "only-multiline",
"objects": "only-multiline",
"imports": "only-multiline",
"exports": "only-multiline",
"functions": "never"
}],
"function-paren-newline": 0,
"implicit-arrow-linebreak": 0,
"import/extensions": 0,
"import/first": 0,
"import/newline-after-import": 0,
"import/no-cycle": 0,
"import/no-extraneous-dependencies": 0,
"import/no-named-as-default": 0,
"import/no-named-as-default-member": 0,
"import/no-useless-path-segments": 0,
"import/order": 0,
"import/prefer-default-export": 0,
"jsx-a11y/alt-text": 0,
"jsx-a11y/click-events-have-key-events": 0,
"jsx-a11y/label-has-for": 0,
"jsx-a11y/mouse-events-have-key-events": 0,
"jsx-a11y/no-noninteractive-element-interactions": 0,
"jsx-a11y/no-static-element-interactions": 0,
"lodash/prefer-lodash-method": ["error", {
"ignoreMethods": ["split", "trim", "replace", "toLower"]
}],
"max-len": 1,
"no-else-return": 0,
"no-extra-boolean-cast": 0,
"no-lonely-if": 0,
"no-multi-assign": 0,
"no-plusplus": 0,
"no-prototype-builtins": 0,
"no-restricted-globals": 0,
"no-import-assign": 0,
"no-unsafe-optional-chaining": 0,
"no-async-promise-executor": 0,
"default-param-last": 0,
"object-curly-newline": 0,
"operator-assignment": 0,
"operator-linebreak": 0,
"prefer-destructuring": 0,
"react/button-has-type": 0,
"react/default-props-match-prop-types": 0,
"react/no-unused-class-component-methods": 0,
"react/no-children-prop": 0,
"react/destructuring-assignment": 0,
"react/forbid-prop-types": 0,
"react/function-component-definition": 0,
"react/jsx-closing-bracket-location": 0,
"react/jsx-curly-brace-presence": 0,
"react/jsx-filename-extension": 0,
"react/jsx-max-props-per-line": 0,
"react/jsx-no-bind": 0,
"react/jsx-one-expression-per-line": 0,
"react/jsx-wrap-multilines": 0,
"react/jsx-props-no-spreading": 0,
"react/no-access-state-in-setstate": 0,
"react/no-arrow-function-lifecycle": 0,
"react/no-deprecated": 0,
"react/no-unused-prop-types": 0,
"react/prop-types": 0,
"react/require-default-props": 0,
"react/sort-comp": 0,
"react/static-property-placement": 0,
"space-unary-ops": 0
}
}