Skip to content

Commit

Permalink
fix(object-property-newline): Relax to allow all props on one line.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jamie Hoover committed Oct 31, 2016
1 parent 3885ccc commit 5527cf8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion rules/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,10 @@ module.exports = {
'no-with': 'error',
'object-curly-newline': 'error',
'object-curly-spacing': 'error',
'object-property-newline': 'error',
'object-property-newline': [
'error',
{allowMultiplePropertiesPerLine: true},
],
'object-shorthand': 'error',
'one-var': ['error', 'never'],
'one-var-declaration-per-line': 'error',
Expand Down

0 comments on commit 5527cf8

Please sign in to comment.