Skip to content

Commit

Permalink
Update repo prettier config to avoid errors
Browse files Browse the repository at this point in the history
This adds a separator between builtins and third party imports, as we had before
  • Loading branch information
IanVS committed Apr 23, 2023
1 parent 262184a commit e5c2f3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prettier.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ module.exports = {
bracketSameLine: true,
semi: true,
plugins: [require('./lib/src/index.js')],
importOrder: ['<THIRD_PARTY_MODULES>', '', '^[./]'],
importOrder: ['', '<THIRD_PARTY_MODULES>', '', '^[./]'],
importOrderSortSpecifiers: true,
};

0 comments on commit e5c2f3f

Please sign in to comment.