mirror of
https://github.com/zhigang1992/wallet.git
synced 2026-01-12 22:53:27 +08:00
15 lines
321 B
JavaScript
15 lines
321 B
JavaScript
const defaultConfig = require('@stacks/prettier-config');
|
|
|
|
module.exports = {
|
|
...defaultConfig,
|
|
importOrder: [
|
|
'^react',
|
|
'<THIRD_PARTY_MODULES>',
|
|
'^@shared/(.*)$',
|
|
'^@(app|content-script|inpage|background)/(.*)$',
|
|
'^[./]',
|
|
],
|
|
importOrderSeparation: true,
|
|
importOrderSortSpecifiers: true,
|
|
};
|