Skip to content

Commit 7ff4723

Browse files
committed
feat(package): updated to eslint 2.13.1
1 parent 21f85d3 commit 7ff4723

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

.eslintrc.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,7 @@
198198
2,
199199
120
200200
],
201+
"max-lines": ["error", {"max": 300, "skipComments": true, "skipBlankLines": true}],
201202
"max-nested-callbacks": 2,
202203
"max-params": 2,
203204
"max-statements": 2,
@@ -217,6 +218,7 @@
217218
"no-continue": 2,
218219
"no-inline-comments": 2,
219220
"no-lonely-if": 2,
221+
"no-mixed-operators": [2, {"allowSamePrecedence": true}],
220222
"no-mixed-spaces-and-tabs": 2,
221223
"no-multiple-empty-lines": 2,
222224
"no-negated-condition": 2,
@@ -230,6 +232,7 @@
230232
"no-underscore-dangle": 2,
231233
"no-unneeded-ternary": 2,
232234
"no-whitespace-before-property": 2,
235+
"object-curly-newline": [2, {"multiline": true}],
233236
"object-curly-spacing": 2,
234237
"object-property-newline": [2, { "allowMultiplePropertiesPerLine": true }],
235238
"one-var": [
@@ -300,6 +303,7 @@
300303
"prefer-spread": 2,
301304
"prefer-template": 2,
302305
"require-yield": 2,
306+
"rest-spread-spacing": [2, "always"],
303307
"template-curly-spacing": 2,
304308
"yield-star-spacing": 2
305309
}

0 commit comments

Comments
 (0)