mirror of
https://github.com/datahub-project/datahub.git
synced 2025-06-27 05:03:31 +00:00
21 lines
589 B
JavaScript
21 lines
589 B
JavaScript
module.exports = {
|
|
semi: true,
|
|
trailingComma: 'all',
|
|
singleQuote: true,
|
|
printWidth: 120,
|
|
tabWidth: 4,
|
|
plugins: ['@trivago/prettier-plugin-sort-imports'],
|
|
importOrder: [
|
|
'.*\.less$',
|
|
'<THIRD_PARTY_MODULES>',
|
|
'^@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,
|
|
};
|