Skip to content
This repository has been archived by the owner on Jun 16, 2021. It is now read-only.

Commit

Permalink
🚨 object-property-newline, please stop the madness
Browse files Browse the repository at this point in the history
  • Loading branch information
JeromeFitz authored and kodiakhq[bot] committed May 1, 2021
1 parent 45cd9cc commit d8f58d1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -417,10 +417,12 @@ module.exports = {
'no-with': 2,
'nonblock-statement-body-position': [2, 'below'],
'object-curly-spacing': [0, 'never'],

// @note(updated)
'object-property-newline': [
2,
{
allowMultiplePropertiesPerLine: false,
allowMultiplePropertiesPerLine: true,
},
],
'object-shorthand': [2, 'always'],
Expand Down
1 change: 0 additions & 1 deletion changelog.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@ const config = require('./lib/themes/default')

const questions = ['type', 'scope', 'subject', 'body', 'breaking']

// eslint-disable-next-line object-property-newline
module.exports = { ...config, questions }
1 change: 0 additions & 1 deletion release.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ const writerOpts = {
}

module.exports = {
// eslint-disable-next-line object-property-newline
branches: [{ name: 'main' }, { name: 'canary', prerelease: 'canary' }],
extends: ['semantic-release-commit-filter'],
plugins: [
Expand Down

0 comments on commit d8f58d1

Please sign in to comment.