Skip to content

Commit

Permalink
fix: consisitent import/export declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
Talent30 committed Nov 11, 2023
1 parent b7e73a4 commit adfc613
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions index.js
Expand Up @@ -428,15 +428,19 @@ module.exports = {
minProperties: 2,
consistent: true,
},
ObjectPattern: 'never',
ObjectPattern: {
multiline: true,
minProperties: 4,
consistent: true,
},
ImportDeclaration: {
multiline: true,
minProperties: 4,
consistent: true,
},
ExportDeclaration: {
multiline: true,
minProperties: 2,
minProperties: 4,
consistent: true,
},
},
Expand Down

0 comments on commit adfc613

Please sign in to comment.