-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc
119 lines (119 loc) · 3.55 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"parser": "babel-eslint",
"extends": [
"eslint:recommended",
"plugin:react/recommended"
],
"settings": {
"react": {
"version": "detect"
}
},
"env": {
"browser": true,
"node": true,
"webextensions": true,
"es6": true
},
"rules": {
"linebreak-style": 0,
"no-empty": 0,
"comma-dangle": 0,
"no-unused-vars": 1,
"no-console": 0,
"no-const-assign": 2,
"no-dupe-class-members": 2,
"no-duplicate-case": 2,
"no-extra-parens": [2, "functions"],
"no-self-compare": 2,
"accessor-pairs": 2,
"comma-spacing": [0, {
"before": false,
"after": true
}],
"constructor-super": 2,
"new-cap": [2, {
"newIsCap": false,
"capIsNew": false
}],
"new-parens": 2,
"no-array-constructor": 2,
"no-class-assign": 2,
"no-cond-assign": 2,
"no-mixed-spaces-and-tabs": 0,
"react/jsx-filename-extension": 0,
"no-multi-spaces": 0,
"react/jsx-props-no-multi-spaces": 0,
"react/jsx-one-expression-per-line": 0,
"react/button-has-type": 0,
"indent": 0,
"class-methods-use-this": 1,
"react/sort-comp": 1,
"space-before-function-paren": 0,
"quotes": 0,
"arrow-spacing": 0,
"object-curly-spacing": 0,
"keyword-spacing": 0,
"block-spacing": 0,
"space-infix-ops": 0,
"semi": 0,
"prefer-const": 0,
"space-before-blocks": 0,
"space-in-parens": 0,
"prefer-template": 0,
"spaced-comment": 0,
"no-multiple-empty-lines": 0,
"prefer-arrow-callback": 0,
"no-trailing-spaces": 0,
"object-shorthand": 0,
"arrow-parens": 0,
"no-multi-assign": 0,
"key-spacing": 0,
"arrow-body-style": 0,
"lines-between-class-members": 0,
"react/jsx-wrap-multilines": 0,
"react/jsx-tag-spacing": 0,
"no-mixed-operators": 0,
"react/jsx-closing-tag-location": 0,
"eol-last": 0,
"react/prefer-stateless-function": 1,
"padded-blocks": 0,
"react/jsx-curly-spacing": 0,
"react/jsx-indent-props": 0,
"react/jsx-indent": 0,
"react/self-closing-comp": 0,
"react/destructuring-assignment": 0,
"react/static-property-placement": 0,
"react/require-default-props": 0,
"jsx-a11y/click-events-have-key-events": 0,
"jsx-a11y/no-static-element-interactions": 0,
"default-case": 0,
"no-unneeded-ternary": 0,
"jsx-quotes": 0,
"react/jsx-first-prop-new-line": 0,
"react/jsx-max-props-per-line": 0,
"react/jsx-closing-bracket-location": 0,
"object-curly-newline": 0,
"no-param-reassign": 0,
"jsx-a11y/anchor-has-content": 0,
"jsx-a11y/control-has-associated-label": 0,
"import/prefer-default-export": 0,
"max-len": 0,
"consistent-return": 0,
"no-else-return": 0,
"no-plusplus": 0,
"no-lonely-if": 0,
"no-extra-boolean-cast": 0,
"no-case-declarations": 0,
"jsx-a11y/accessible-emoji": 0,
"camelcase": 0,
"react/jsx-no-target-blank": 0,
"react/jsx-fragments": 1,
"template-curly-spacing": 0,
"react/display-name": 0,
"react/prop-types": 0,
"no-constant-condition": 0,
"no-useless-catch": 1,
"no-fallthrough": 1
}
}