mirror of
https://github.com/selfxyz/self.git
synced 2026-04-05 03:00:53 -04:00
12 lines
322 B
JavaScript
12 lines
322 B
JavaScript
module.exports = {
|
|
arrowParens: 'avoid',
|
|
bracketSameLine: false,
|
|
bracketSpacing: true,
|
|
singleQuote: true,
|
|
trailingComma: 'all',
|
|
plugins: ['@trivago/prettier-plugin-sort-imports'],
|
|
importOrder: ['^react', '<THIRD_PARTY_MODULES>', '^[./]'],
|
|
importOrderSeparation: true,
|
|
importOrderSortSpecifiers: true,
|
|
};
|