Skip to content

Commit

Permalink
fix: object-property-newline.allowMultiplePropertiesPerLine should …
Browse files Browse the repository at this point in the history
…be an object
  • Loading branch information
OrbisK committed Dec 21, 2022
1 parent b47c8a8 commit c44fa09
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions configs/basic/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -256,9 +256,9 @@ module.exports = {
balanced: true,
},
}],
//consistency
'array-element-newline':["error", "consistent"],
'object-property-newline': ['error','allowMultiplePropertiesPerLine'],
// consistency
'array-element-newline': ['error', 'consistent'],
'object-property-newline': ['error', {allowMultiplePropertiesPerLine: true}],

// best-practice
'array-callback-return': 'error',
Expand Down

0 comments on commit c44fa09

Please sign in to comment.