forked from mollykannn/translate-big5-gbk
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path.prettierrc.mjs
129 lines (124 loc) · 2.6 KB
/
.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
// @ts-check
/** @type {import('prettier').Config} */
const overrides = {
overrides: [
{
files: ['*.astro'],
options: { parser: 'astro' },
},
{
files: ['*.js', '*.mjs', '*.cjs'],
options: { parser: 'babel' },
},
{
files: ['*.ts', '*.tsx'],
options: { parser: 'typescript' },
},
{
files: ['*.json'],
options: { parser: 'json' },
},
{
files: ['**/package.json'],
options: { parser: 'json-stringify' },
},
{
files: '*.vue',
options: { parser: 'vue' },
},
{
files: ['*.htm', '*.html', '*.htmlx'],
options: { parser: 'html' },
},
{
files: '*.scss',
options: { parser: 'scss' },
},
{
files: '*.css',
options: { parser: 'css' },
},
{
files: '*.md',
options: { parser: 'markdown' },
},
{
files: '*.mdx',
options: { parser: 'mdx' },
},
{
files: '*.yaml',
options: { parser: 'yaml' },
},
],
}
/** @type {Partial<import('prettier-plugin-jsdoc').AllOptions>} */
const prettierPluginJsdocOptions = {
/**
* @example
* // jsdocCommentLineStrategy: 'singleLine'
*
* // input:
*
* \/** https://github.com/changesets/changesets/blob/main/packages/cli/src/commit/index.ts *\/
*
* // output:
*
* ```
* \/**
* * https://github.com/changesets/changesets/blob/main/packages/cli/src/commit/index.ts
* *\/
* ```
*
* @example
* // jsdocCommentLineStrategy: 'multiline'
*
* // input:
* \/**
* * https://github.com/changesets/changesets/blob/main/packages/cli/src/commit/index.ts
* *\/
*
* // output:
*
* \/** https://github.com/changesets/changesets/blob/main/packages/cli/src/commit/index.ts *\/
*/
jsdocCommentLineStrategy: 'keep',
/**
* @example
* // jsdocCommentLineStrategy: 'true'
*
* // input:
*
* \/** a for apple, b for ball *\/
*
* // output:
*
* \/** A for apple, b for ball *\/
*/
jsdocCapitalizeDescription: false,
}
/** @type {import('prettier').Options} */
const config = {
plugins: ['prettier-plugin-jsdoc'],
...prettierPluginJsdocOptions,
arrowParens: 'always',
bracketSameLine: false,
bracketSpacing: true,
insertPragma: false,
jsxSingleQuote: true,
parser: 'typescript',
printWidth: 100,
proseWrap: 'preserve',
quoteProps: 'consistent',
requirePragma: false,
semi: false,
singleAttributePerLine: true,
singleQuote: true,
tabWidth: 2,
trailingComma: 'all',
useTabs: false,
}
export default {
...config,
...overrides,
}