Skip to content

Commit

Permalink
fix: deprecated synonym
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbbreuer committed Oct 10, 2022
1 parent 8a964f9 commit 1fbf951
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/basic/index.js
Expand Up @@ -59,7 +59,7 @@ module.exports = {
'jsonc/no-octal-escape': 'error',
'jsonc/object-curly-newline': ['error', { multiline: true, consistent: true }],
'jsonc/object-curly-spacing': ['error', 'always'],
'jsonc/object-property-newline': ['error', { allowMultiplePropertiesPerLine: true }],
'jsonc/object-property-newline': ['error', { allowAllPropertiesOnSameLine: true }],
},
},
{
Expand Down
2 changes: 1 addition & 1 deletion packages/basic/standard.js
Expand Up @@ -189,7 +189,7 @@ module.exports = {
'no-with': 'error',
'object-curly-newline': ['error', { multiline: true, consistent: true }],
'object-curly-spacing': ['error', 'always'],
'object-property-newline': ['error', { allowMultiplePropertiesPerLine: true }],
'object-property-newline': ['error', { allowAllPropertiesOnSameLine: true }],
'one-var': ['error', { initialized: 'never' }],
'operator-linebreak': ['error', 'after', { overrides: { '?': 'before', ':': 'before', '|>': 'before' } }],
'padded-blocks': ['error', { blocks: 'never', switches: 'never', classes: 'never' }],
Expand Down
2 changes: 1 addition & 1 deletion packages/vue/index.js
Expand Up @@ -88,7 +88,7 @@ module.exports = {
'vue/no-sparse-arrays': 'error',
'vue/object-curly-newline': ['error', { multiline: true, consistent: true }],
'vue/object-curly-spacing': ['error', 'always'],
'vue/object-property-newline': ['error', { allowMultiplePropertiesPerLine: true }],
'vue/object-property-newline': ['error', { allowAllPropertiesOnSameLine: true }],
'vue/object-shorthand': [
'error',
'always',
Expand Down

0 comments on commit 1fbf951

Please sign in to comment.