-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy path.eslintrc
274 lines (273 loc) · 30.5 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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
{
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true,
"es6": true,
},
"plugins": [
"react"
],
"globals": {
},
"parserOptions": {
"ecmaVersion": 6,
"ecmaFeatures": {
"arrowFunctions": true,
"blockBindings": true,
"classes": true,
"defaultParams": true,
"destructuring": true,
"forOf": true,
"generators": false,
"jsx": true,
"modules": true,
"objectLiteralComputedProperties": true,
"objectLiteralDuplicateProperties": false,
"objectLiteralShorthandMethods": true,
"objectLiteralShorthandProperties": true,
"spread": true,
"superInFunctions": true,
"templateStrings": true,
},
"sourceType": "module"
},
"rules": {
"accessor-pairs": 0, // http://eslint.org/docs/rules/accessor-pairs
"array-bracket-spacing": [2, "never"], // http://eslint.org/docs/rules/array-bracket-spacing
"arrow-body-style": 0, // http://eslint.org/docs/rules/arrow-body-style
"arrow-parens": [2, "always"], // http://eslint.org/docs/rules/arrow-parens
"arrow-spacing": [2, { "before": true, "after": true }], // http://eslint.org/docs/rules/arrow-spacing
"block-scoped-var": 2, // http://eslint.org/docs/rules/block-scoped-var
"block-spacing": [2, "always"], // http://eslint.org/docs/rules/block-spacing
"brace-style": [2, "1tbs", { "allowSingleLine": false }], // http://eslint.org/docs/rules/brace-style
"callback-return": 0, // http://eslint.org/docs/rules/callback-return
"camelcase": [2, { "properties": "never"}], // http://eslint.org/docs/rules/camelcase
"comma-dangle": [2, "never"], // http://eslint.org/docs/rules/comma-dangle
"comma-spacing": [2, {"before": false, "after": true}], // http://eslint.org/docs/rules/comma-spacing
"comma-style": [2, "last"], // http://eslint.org/docs/rules/comma-style
"complexity": [2, 8], // http://eslint.org/docs/rules/complexity
"computed-property-spacing": [2, "never"], // http://eslint.org/docs/rules/computed-property-spacing
"consistent-return": 0, // http://eslint.org/docs/rules/consistent-return
"consistent-this": [2, "that"], // http://eslint.org/docs/rules/consistent-this
"constructor-super": 2, // http://eslint.org/docs/rules/constructor-super
"curly": [2, "all"], // http://eslint.org/docs/rules/curly
"default-case": 0, // http://eslint.org/docs/rules/default-case
"dot-location": [2, "property"], // http://eslint.org/docs/rules/dot-location
"dot-notation": [2, {"allowPattern": "^[a-z]+(_[a-z]+)+$"}], // http://eslint.org/docs/rules/dot-notation
"eol-last": 2, // http://eslint.org/docs/rules/eol-last
"eqeqeq": 2, // http://eslint.org/docs/rules/eqeqeq
"func-names": 0, // http://eslint.org/docs/rules/func-names
"func-style": 0, // http://eslint.org/docs/rules/func-style
"generator-star-spacing": [2, "before"], // http://eslint.org/docs/rules/generator-star-spacing
"global-require": 0, // http://eslint.org/docs/rules/global-require
"guard-for-in": 0, // http://eslint.org/docs/rules/guard-for-in
"handle-callback-err": 0, // http://eslint.org/docs/rules/handle-callback-err
"id-length": 0, // http://eslint.org/docs/rules/id-length
"id-match": 0, // http://eslint.org/docs/rules/id-match
"indent": [2, 2, { "SwitchCase": 1 }], // http://eslint.org/docs/rules/indent
"init-declarations": 0, // http://eslint.org/docs/rules/init-declarations
"jsx-quotes": [2, "prefer-double"], // http://eslint.org/docs/rules/jsx-quotes
"key-spacing": 0, // http://eslint.org/docs/rules/key-spacing
"linebreak-style": 0, // http://eslint.org/docs/rules/linebreak-style
"lines-around-comment": 0, // http://eslint.org/docs/rules/lines-around-comment
"max-depth": 0, // http://eslint.org/docs/rules/max-depth
"max-len": [2, 110, 2], // http://eslint.org/docs/rules/max-len
"max-nested-callbacks": 0, // http://eslint.org/docs/rules/max-nested-callbacks
"max-params": 0, // http://eslint.org/docs/rules/max-params
"max-statements": 0, // http://eslint.org/docs/rules/max-statements
"new-cap": 0, // http://eslint.org/docs/rules/new-cap
"new-parens": 2, // http://eslint.org/docs/rules/new-parens
"newline-after-var": 0, // http://eslint.org/docs/rules/newline-after-var
"no-alert": 1, // http://eslint.org/docs/rules/no-alert
"no-array-constructor": 0, // http://eslint.org/docs/rules/no-array-constructor
"no-arrow-condition": 0, // http://eslint.org/docs/rules/no-arrow-condition
"no-bitwise": 2, // http://eslint.org/docs/rules/no-bitwise
"no-caller": 0, // http://eslint.org/docs/rules/no-caller
"no-case-declarations": 0, // http://eslint.org/docs/rules/no-case-declarations
"no-catch-shadow": 2, // http://eslint.org/docs/rules/no-catch-shadow
"no-class-assign": 2, // http://eslint.org/docs/rules/no-class-assign
"no-cond-assign": 2, // http://eslint.org/docs/rules/no-cond-assign
"no-console": 1, // http://eslint.org/docs/rules/no-console
"no-const-assign": 2, // http://eslint.org/docs/rules/no-const-assign
"no-constant-condition": 2, // http://eslint.org/docs/rules/no-constant-condition
"no-continue": 0, // http://eslint.org/docs/rules/no-continue
"no-control-regex": 0, // http://eslint.org/docs/rules/no-control-regex
"no-debugger": 2, // http://eslint.org/docs/rules/no-debugger
"no-delete-var": 2, // http://eslint.org/docs/rules/no-delete-var
"no-div-regex": 2, // http://eslint.org/docs/rules/no-div-regex
"no-dupe-args": 2, // http://eslint.org/docs/rules/no-dupe-args
"no-dupe-class-members": 2, // http://eslint.org/docs/rules/no-dupe-class-members
"no-dupe-keys": 2, // http://eslint.org/docs/rules/no-dupe-keys
"no-duplicate-case": 2, // http://eslint.org/docs/rules/no-duplicate-case
"no-else-return": 0, // http://eslint.org/docs/rules/no-else-return
"no-empty": 2, // http://eslint.org/docs/rules/no-empty
"no-empty-character-class": 0, // http://eslint.org/docs/rules/no-empty-character-class
"no-empty-pattern": 2, // http://eslint.org/docs/rules/no-empty-pattern
"no-eq-null": 2, // http://eslint.org/docs/rules/no-eq-null
"no-eval": 2, // http://eslint.org/docs/rules/no-eval
"no-ex-assign": 2, // http://eslint.org/docs/rules/no-ex-assign
"no-extend-native": 0, // http://eslint.org/docs/rules/no-extend-native
"no-extra-bind": 2, // http://eslint.org/docs/rules/no-extra-bind
"no-extra-boolean-cast": 2, // http://eslint.org/docs/rules/no-extra-boolean-cast
"no-extra-parens": 0, // http://eslint.org/docs/rules/no-extra-parens
"no-extra-semi": 2, // http://eslint.org/docs/rules/no-extra-semi
"no-fallthrough": 2, // http://eslint.org/docs/rules/no-fallthrough
"no-floating-decimal": 2, // http://eslint.org/docs/rules/no-floating-decimal
"no-func-assign": 2, // http://eslint.org/docs/rules/no-func-assign
"no-implicit-coercion": 0, // http://eslint.org/docs/rules/no-implicit-coercion
"no-implied-eval": 2, // http://eslint.org/docs/rules/no-implied-eval
"no-inline-comments": 0, // http://eslint.org/docs/rules/no-inline-comments
"no-inner-declarations": 0, // http://eslint.org/docs/rules/no-inner-declarations
"no-invalid-regexp": 2, // http://eslint.org/docs/rules/no-invalid-regexp
"no-invalid-this": 0, // http://eslint.org/docs/rules/no-invalid-this
"no-irregular-whitespace": 2, // http://eslint.org/docs/rules/no-irregular-whitespace
"no-iterator": 0, // http://eslint.org/docs/rules/no-iterator
"no-label-var": 2, // http://eslint.org/docs/rules/no-label-var
"no-labels": 2, // http://eslint.org/docs/rules/no-labels
"no-lone-blocks": 2, // http://eslint.org/docs/rules/no-lone-blocks
"no-lonely-if": 0, // http://eslint.org/docs/rules/no-lonely-if
"no-loop-func": 0, // http://eslint.org/docs/rules/no-loop-func
"no-magic-numbers": 0, // http://eslint.org/docs/rules/no-magic-numbers
"no-mixed-requires": 0, // http://eslint.org/docs/rules/no-mixed-requires
"no-mixed-spaces-and-tabs": 2, // http://eslint.org/docs/rules/no-mixed-spaces-and-tabs
"no-multi-spaces": 2, // http://eslint.org/docs/rules/no-multi-spaces
"no-multi-str": 0, // http://eslint.org/docs/rules/no-multi-str
"no-multiple-empty-lines": 2, // http://eslint.org/docs/rules/no-multiple-empty-lines
"no-native-reassign": 2, // http://eslint.org/docs/rules/no-native-reassign
"no-negated-condition": 2, // http://eslint.org/docs/rules/no-negated-condition
"no-negated-in-lhs": 2, // http://eslint.org/docs/rules/no-negated-in-lhs
"no-nested-ternary": 0, // http://eslint.org/docs/rules/no-nested-ternary
"no-new": 2, // http://eslint.org/docs/rules/no-new
"no-new-func": 2, // http://eslint.org/docs/rules/no-new-func
"no-new-object": 2, // http://eslint.org/docs/rules/no-new-object
"no-new-require": 2, // http://eslint.org/docs/rules/no-new-require
"no-new-wrappers": 2, // http://eslint.org/docs/rules/no-new-wrappers
"no-obj-calls": 2, // http://eslint.org/docs/rules/no-obj-calls
"no-octal": 2, // http://eslint.org/docs/rules/no-octal
"no-octal-escape": 2, // http://eslint.org/docs/rules/no-octal-escape
"no-param-reassign": 1, // http://eslint.org/docs/rules/no-param-reassign
"no-path-concat": 2, // http://eslint.org/docs/rules/no-path-concat
"no-plusplus": 0, // http://eslint.org/docs/rules/no-plusplus
"no-process-env": 0, // http://eslint.org/docs/rules/no-process-env
"no-process-exit": 0, // http://eslint.org/docs/rules/no-process-exit
"no-proto": 0, // http://eslint.org/docs/rules/no-proto
"no-redeclare": 2, // http://eslint.org/docs/rules/no-redeclare
"no-regex-spaces": 0, // http://eslint.org/docs/rules/no-regex-spaces
"no-restricted-imports": 0, // http://eslint.org/docs/rules/no-restricted-imports
"no-restricted-modules": 0, // http://eslint.org/docs/rules/no-restricted-modules
"no-restricted-syntax": 0, // http://eslint.org/docs/rules/no-restricted-syntax
"no-return-assign": 2, // http://eslint.org/docs/rules/no-return-assign
"no-script-url": 0, // http://eslint.org/docs/rules/no-script-url
"no-self-compare": 2, // http://eslint.org/docs/rules/no-self-compare
"no-sequences": 0, // http://eslint.org/docs/rules/no-sequences
"no-shadow": 2, // http://eslint.org/docs/rules/no-shadow
"no-shadow-restricted-names": 2, // http://eslint.org/docs/rules/no-shadow-restricted-names
"no-spaced-func": 0, // http://eslint.org/docs/rules/no-spaced-func
"no-sparse-arrays": 2, // http://eslint.org/docs/rules/no-sparse-arrays
"no-sync": 0, // http://eslint.org/docs/rules/no-sync
"no-ternary": 0, // http://eslint.org/docs/rules/no-ternary
"no-this-before-super": 2, // http://eslint.org/docs/rules/no-this-before-super
"no-throw-literal": 2, // http://eslint.org/docs/rules/no-throw-literal
"no-trailing-spaces": 2, // http://eslint.org/docs/rules/no-trailing-spaces
"no-undef": 2, // http://eslint.org/docs/rules/no-undef
"no-undef-init": 2, // http://eslint.org/docs/rules/no-undef-init
"no-undefined": 0, // http://eslint.org/docs/rules/no-undefined
"no-underscore-dangle": 0, // http://eslint.org/docs/rules/no-underscore-dangle
"no-unexpected-multiline": 0, // http://eslint.org/docs/rules/no-unexpected-multiline
"no-unneeded-ternary": 2, // http://eslint.org/docs/rules/no-unneeded-ternary
"no-unreachable": 2, // http://eslint.org/docs/rules/no-unreachable
"no-unused-expressions": 2, // http://eslint.org/docs/rules/no-unused-expressions
"no-unused-vars": 2, // http://eslint.org/docs/rules/no-unused-vars
"no-use-before-define": 2, // http://eslint.org/docs/rules/no-use-before-define
"no-useless-call": 2, // http://eslint.org/docs/rules/no-useless-call
"no-useless-concat": 2, // http://eslint.org/docs/rules/no-useless-concat
"no-var": 2, // http://eslint.org/docs/rules/no-var
"no-void": 2, // http://eslint.org/docs/rules/no-void
"no-warning-comments": 1, // http://eslint.org/docs/rules/no-warning-comments
"no-with": 2, // http://eslint.org/docs/rules/no-with
"object-curly-spacing": [2, "always"], // http://eslint.org/docs/rules/object-curly-spacing
"object-shorthand": 2, // http://eslint.org/docs/rules/object-shorthand
"one-var": [2, "never"], // http://eslint.org/docs/rules/one-var
"operator-assignment": [2, "always"], // http://eslint.org/docs/rules/operator-assignment
"operator-linebreak": 0, // http://eslint.org/docs/rules/operator-linebreak
"padded-blocks": 0, // http://eslint.org/docs/rules/padded-blocks
"prefer-arrow-callback": 0, // http://eslint.org/docs/rules/prefer-arrow-callback
"prefer-const": 2, // http://eslint.org/docs/rules/prefer-const
"prefer-reflect": 0, // http://eslint.org/docs/rules/prefer-reflect
"prefer-rest-params": 0, // http://eslint.org/docs/rules/prefer-rest-params
"prefer-spread": 2, // http://eslint.org/docs/rules/prefer-spread
"prefer-template": 2, // http://eslint.org/docs/rules/prefer-template
"quote-props": [2, "as-needed"], // http://eslint.org/docs/rules/quote-props
"quotes": [2, "single"], // http://eslint.org/docs/rules/quotes
"radix": 0, // http://eslint.org/docs/rules/radix
"require-jsdoc": 0, // http://eslint.org/docs/rules/require-jsdoc
"require-yield": 0, // http://eslint.org/docs/rules/require-yield
"semi": [2, "always"], // http://eslint.org/docs/rules/semi
"semi-spacing": [2, {"before": false, "after": true}], // http://eslint.org/docs/rules/semi-spacing
"sort-vars": 0, // http://eslint.org/docs/rules/sort-vars
"keyword-spacing": 2, // http://eslint.org/docs/rules/keyword-spacing
"space-before-blocks": 2, // http://eslint.org/docs/rules/space-before-blocks
"space-before-function-paren": 0, // http://eslint.org/docs/rules/space-before-function-paren
"space-in-parens": [2, "never"], // http://eslint.org/docs/rules/space-in-parens
"space-infix-ops": 2, // http://eslint.org/docs/rules/space-infix-ops
"space-unary-ops": 2, // http://eslint.org/docs/rules/space-unary-ops
"spaced-comment": [2, "always"], // http://eslint.org/docs/rules/spaced-comment
"strict": 0, // http://eslint.org/docs/rules/strict
"use-isnan": 2, // http://eslint.org/docs/rules/use-isnan
"valid-jsdoc": 0, // http://eslint.org/docs/rules/valid-jsdoc
"valid-typeof": 2, // http://eslint.org/docs/rules/valid-typeof
"vars-on-top": 0, // http://eslint.org/docs/rules/vars-on-top
"wrap-iife": [2, "inside"], // http://eslint.org/docs/rules/wrap-iife
"wrap-regex": 0, // http://eslint.org/docs/rules/wrap-regex
"yoda": 2, // http://eslint.org/docs/rules/yoda
"react/display-name": 0, // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/-name.md
"react/forbid-component-props": 0, // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/forbid-component-props.md
"react/forbid-prop-types": 0, // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/-prop-types.md
"react/no-danger": 1, // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/-danger.md
"react/no-danger-with-children": 1, // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/no-danger-with-children.md
"react/no-deprecated": 2, // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/-deprecated.md
"react/no-did-mount-set-state": 2, // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/-did-mount-set-state.md
"react/no-did-update-set-state": 2, // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/-did-update-set-state.md
"react/no-direct-mutation-state": 2, // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/-direct-mutation-state.md
"react/no-find-dom-node": 2, // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/no-find-dom-node.md
"react/no-is-mounted": 2, // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/no-is-mounted.md
"react/no-multi-comp": 0, // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/-multi-comp.md
"react/no-render-return-value": 2, // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/no-render-return-value.md
"react/no-set-state": 0, // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/-set-state.md
"react/no-string-refs": 0, // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/-string-refs.md
"react/no-unknown-property": 2, // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/-unknown-property.md
"react/prefer-es6-class": [2, "always"], // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/-es6-class.md
"react/prefer-stateless-function": 2, // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/-stateless-function.md
"react/prop-types": [2, { ignore: ["style", "children", "navigator", "dispatch"] } ], // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/-types.md
"react/react-in-jsx-scope": 2, // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/-in-jsx-scope.md
"react/require-optimization": 0, // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/require-optimization.md
"react/require-render-return": 2, // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/require-render-return.md
"react/self-closing-comp": 2, // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/self-closing-comp.md
"react/sort-comp": 2, // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/sort-comp.md
"react/sort-prop-types": 0, // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/sort-prop-types.md
"react/jsx-boolean-value": [2, "never"], // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-boolean-value.md
"react/jsx-closing-bracket-location": [2, 'tag-aligned' ], // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-closing-bracket-location.md
"react/jsx-curly-spacing": [2, "never"], // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-curly-spacing.md
"react/jsx-equals-spacing": [2, "never"], // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-equals-spacing.md
"react/jsx-filename-extension": 0, // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-filename-extension.md
"react/jsx-first-prop-new-line": [2, "multiline"], // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-first-prop-new-line.md
"react/jsx-handler-names": 0, // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-handler-names.md
"react/jsx-indent": [2, 2], // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-indent-props.md
"react/jsx-indent-props": [2, 2], // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-indent-props.md
"react/jsx-key": 2, // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-key.md
"react/jsx-max-props-per-line": 2, // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-max-props-per-line.md
"react/jsx-no-bind": 0, // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-no-bind.md
"react/jsx-no-comment-textnodes": 2, // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-no-comment-textnodes.md
"react/jsx-no-duplicate-props": 2, // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-no-duplicate-props.md
"react/jsx-no-literals": 0, // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-no-literals.md
"react/jsx-no-target-blank": 0, // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/react/jsx-no-target-blank.md
"react/jsx-no-undef": 2, // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-no-undef.md
"react/jsx-pascal-case": 2, // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-pascal-case.md
"react/jsx-sort-props": 0, // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-sort-props.md
"react/jsx-space-before-closing": 0, // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-space-before-closing.md
"react/jsx-uses-react": 2, // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-uses-react.md
"react/jsx-uses-vars": 2, // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-uses-vars.md
"react/jsx-wrap-multilines": 2, // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/react/jsx-wrap-multilines.md
}
}