@@ -3,7 +3,7 @@ module.exports = {
33 // enforce line breaks after opening and before closing array brackets
44 // http://eslint.org/docs/rules/array-bracket-newline
55 // TODO: enable? semver-major
6- 'array-bracket-newline' : [ 'off' , { multiline : true , minItems : 3 } ] ,
6+ 'array-bracket-newline' : [ 'off' , 'consistent' ] , // object option alternative: { multiline: true, minItems: 3 }
77
88 // enforce line breaks between array elements
99 // http://eslint.org/docs/rules/array-element-newline
@@ -153,6 +153,11 @@ module.exports = {
153153 // http://eslint.org/docs/rules/linebreak-style
154154 'linebreak-style' : [ 'error' , 'unix' ] ,
155155
156+ // require or disallow an empty line between class members
157+ // https://eslint.org/docs/rules/lines-between-class-members
158+ // TODO: semver-major: enable
159+ 'lines-between-class-members' : [ 'off' , 'always' , { exceptAfterSingleLine : false } ] ,
160+
156161 // enforces empty lines around comments
157162 'lines-around-comment' : 'off' ,
158163
@@ -197,6 +202,10 @@ module.exports = {
197202 // http://eslint.org/docs/rules/max-statements-per-line
198203 'max-statements-per-line' : [ 'off' , { max : 1 } ] ,
199204
205+ // enforce a particular style for multiline comments
206+ // https://eslint.org/docs/rules/multiline-comment-style
207+ 'multiline-comment-style' : [ 'off' , 'starred-block' ] ,
208+
200209 // require multiline ternary
201210 // http://eslint.org/docs/rules/multiline-ternary
202211 // TODO: enable?
0 commit comments