-
Notifications
You must be signed in to change notification settings - Fork 153
/
Copy path.prettierrc.mjs
39 lines (39 loc) · 1002 Bytes
/
.prettierrc.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/**
* Copyright (c) 2025 Bytedance, Inc. and its affiliates.
* SPDX-License-Identifier: Apache-2.0
*/
export default {
arrowParens: 'always',
bracketSameLine: false,
bracketSpacing: true,
semi: true,
experimentalTernaries: false,
singleQuote: true,
jsxSingleQuote: false,
quoteProps: 'as-needed',
trailingComma: 'all',
singleAttributePerLine: false,
htmlWhitespaceSensitivity: 'css',
vueIndentScriptAndStyle: false,
proseWrap: 'preserve',
insertPragma: false,
requirePragma: false,
tabWidth: 2,
useTabs: false,
embeddedLanguageFormatting: 'auto',
endOfLine: 'auto',
importOrder: [
'^node:(.*)$',
'<THIRD_PARTY_MODULES>',
'^@ui-tars/(.*)$',
'^@main/(.*)$',
'^@shared/(.*)$',
'^@renderer/(.*)$',
'^@resources/(.*)$',
'^[./]',
],
importOrderSeparation: true,
importOrderSortSpecifiers: true,
// https://github.com/trivago/prettier-plugin-sort-imports/issues/229
// plugins: ['@trivago/prettier-plugin-sort-imports'],
};