mirror of
https://github.com/status-im/wakuconnect-chat-sdk.git
synced 2025-01-11 20:54:37 +00:00
006d57f7d1
* add `apps/connector` --------- Co-authored-by: Jakub Kotula <520927+jkbktl@users.noreply.github.com> Co-authored-by: Felicio Mununga <felicio@users.noreply.github.com> Co-authored-by: pavel <14926950+prichodko@users.noreply.github.com> Co-authored-by: marcelines <marcio@status.im>
27 lines
560 B
JavaScript
27 lines
560 B
JavaScript
/**
|
|
* @type {import('prettier').Options}
|
|
*/
|
|
export default {
|
|
printWidth: 80,
|
|
tabWidth: 2,
|
|
useTabs: false,
|
|
semi: false,
|
|
singleQuote: false,
|
|
trailingComma: 'none',
|
|
bracketSpacing: true,
|
|
bracketSameLine: true,
|
|
plugins: ['@ianvs/prettier-plugin-sort-imports'],
|
|
importOrder: [
|
|
'<BUILTIN_MODULES>', // Node.js built-in modules
|
|
'<THIRD_PARTY_MODULES>', // Imports not matched by other special words or groups.
|
|
'', // Empty line
|
|
'^@plasmo/(.*)$',
|
|
'',
|
|
'^@plasmohq/(.*)$',
|
|
'',
|
|
'^~(.*)$',
|
|
'',
|
|
'^[./]',
|
|
],
|
|
}
|