disallowObjectKeysOnNewLine

Disallows placing object keys on new line

Type: Boolean

Value: true

Example

"disallowObjectKeysOnNewLine": true
Valid
var a = {
    b: 'b', c: 'c'
};
Invalid
var a = {
    b: 'b',
    c: 'c'
};
Rule source
Test source