2021-01-17 12:54:49 -08:00
|
|
|
module.exports = {
|
|
|
|
semi: true,
|
|
|
|
trailingComma: 'all',
|
|
|
|
singleQuote: true,
|
|
|
|
printWidth: 120,
|
|
|
|
tabWidth: 4,
|
2025-04-16 16:55:38 -07:00
|
|
|
plugins: ['@trivago/prettier-plugin-sort-imports'],
|
|
|
|
importOrder: [
|
2025-04-24 15:25:37 -07:00
|
|
|
'.*\.less$',
|
|
|
|
'<THIRD_PARTY_MODULES>',
|
2025-04-16 16:55:38 -07:00
|
|
|
'^@components/(.*)$',
|
|
|
|
// Have to specify all aliases otherwise they're considered third party
|
|
|
|
'^(@app|@conf|@providers|@utils|@src)/(.*)$',
|
|
|
|
'^(@graphql/|@graphql-mock/|@types)(.*)$',
|
|
|
|
'^@images/(.*)$',
|
|
|
|
'^[./]',
|
|
|
|
],
|
|
|
|
importOrderSeparation: true,
|
|
|
|
importOrderSortSpecifiers: true,
|
2021-01-17 12:54:49 -08:00
|
|
|
};
|