forked from gilbarbara/react-joyride
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
158 lines (158 loc) · 4.17 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
{
"extends": "airbnb",
"parser": "babel-eslint",
"env": {
"browser": true,
"jest": true
},
"plugins": [
"babel",
"flowtype"
],
"rules": {
"arrow-body-style": [
1,
"as-needed"
],
"arrow-parens": 0,
"block-spacing": 1,
"brace-style": [1, "stroustrup", { "allowSingleLine": true }],
"camelcase": 0,
"class-methods-use-this": 0,
"comma-dangle": 0,
"dot-notation": 1,
"generator-star-spacing": 0,
"global-require": 0,
"indent": [1, 2, { "SwitchCase": 1 }],
"max-len": 0,
"newline-per-chained-call": [1, { "ignoreChainWithDepth": 5 }],
"no-case-declarations": 1,
"no-confusing-arrow": [1, { "allowParens": true }],
"no-mixed-spaces-and-tabs": [1, "smart-tabs"],
"no-multi-spaces": [
1, {
"exceptions": {
"VariableDeclarator": true,
"Property": false
}
}
],
"no-nested-ternary": 1,
"no-param-reassign": [1, { "props": false }],
"no-plusplus": 0,
"no-restricted-syntax": [
2,
"DebuggerStatement",
"LabeledStatement",
"WithStatement"
],
"no-return-assign": [2, "except-parens"],
"no-template-curly-in-string": 1,
"no-trailing-spaces": 1,
"no-underscore-dangle": 0,
"no-unused-vars": 1,
"object-curly-newline": 0,
"object-shorthand": [1, "always"],
"one-var": 1,
"padded-blocks": 1,
"prefer-const": 1,
"prefer-template": 1,
"quotes": [1, "single", "avoid-escape"],
"require-jsdoc": [
0, {
"require": {
"FunctionDeclaration": true,
"MethodDefinition": false,
"ClassDeclaration": false
}
}
],
"space-before-function-paren": [1, "never"],
"space-in-parens": 1,
"spaced-comment": [
1,
"always", {
"exceptions": [
"-+"
],
"markers": [
"eslint-disable",
"eslint-disable-line"
]
}
],
"valid-jsdoc": [
1, {
"prefer": {
"return": "returns"
},
"requireReturn": false,
"requireParamDescription": false,
"requireReturnDescription": false
}
],
"flowtype/require-parameter-type": [0, { "excludeArrowFunctions": true }],
"import/no-dynamic-require": 0,
"import/no-extraneous-dependencies": [2, { "devDependencies": true }],
"import/no-named-as-default": 0,
"import/no-unresolved": 1,
"import/no-webpack-loader-syntax": 0,
"import/prefer-default-export": 0,
"jsx-a11y/click-events-have-key-events": 0,
"jsx-a11y/label-has-for": 0,
"jsx-a11y/no-static-element-interactions": 0,
// React
"jsx-quotes": 1,
"react/default-props-match-prop-types": 0,
"react/forbid-prop-types": 0,
"react/jsx-closing-bracket-location": [1, "after-props"],
"react/jsx-first-prop-new-line": [1, "multiline"],
"react/jsx-indent": [1, 2],
"react/jsx-indent-props": [1, 2],
"react/jsx-key": 1,
"react/jsx-max-props-per-line": [1, { "maximum": 4 }],
"react/jsx-no-target-blank": 0,
"react/no-danger": 0,
"react/no-did-mount-set-state": 1,
"react/no-did-update-set-state": 1,
"react/no-unused-state": 0,
"react/jsx-boolean-value": 0,
"react/jsx-no-duplicate-props": 1,
"react/jsx-pascal-case": 1,
"react/no-direct-mutation-state": 1,
"react/no-unused-prop-types": 1,
"react/no-unescaped-entities": 0,
"react/prefer-stateless-function": 0,
"react/prop-types": 2,
"react/require-default-props": 0,
"react/sort-prop-types": 1,
"react/sort-comp": [
1,
{
"order": [
"constructor",
"lifecycle",
"everything-else",
"render"
],
"groups": {
"lifecycle": [
"statics",
"contextTypes",
"childContextTypes",
"getChildContext",
"propTypes",
"defaultProps",
"shouldComponentUpdate",
"componentWillMount",
"componentDidMount",
"componentWillReceiveProps",
"componentWillUpdate",
"componentDidUpdate",
"componentWillUnmount"
]
}
}
]
}
}