-
Notifications
You must be signed in to change notification settings - Fork 3
/
.prettierrc.cjs
61 lines (61 loc) · 1.3 KB
/
.prettierrc.cjs
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
module.exports = {
// 每行最大字符数
printWidth: 80,
// tab空格数
tabWidth: 2,
// 是否使用tab缩进
useTabs: false,
// 在每个语句末尾加上分号
semi: true,
// 使用单引号
singleQuote: true,
// 对象熟悉是否需要引号
quoteProps: 'preserve',
// jsx 中熟悉使用单引号
jsxSingleQuote: false,
// 多行是加结尾逗号
trailingComma: 'none',
// 大括号左右加空格
bracketSpacing: true,
// jsx标签结束符不换行
jsxBracketSameLine: false,
// 箭头函数参数加括号
arrowParens: 'always',
// 文件顶部有需要格式化注释时才格式化
requirePragma: false,
// 格式化后添加格式化注释标志
insertPragma: false,
// markdown文本换行
proseWrap: 'preserve',
// 处理html换行后空格问题
htmlWhitespaceSensitivity: 'css',
// vue style 和 script 内容是否缩进
vueIndentScriptAndStyle: false,
// 行尾模式
endOfLine: 'auto',
// overrides
overrides: [
{
files: '*.css',
options: {
singleQuote: false
}
},
{
files: '*.less',
options: {
singleQuote: false
}
},
{
files: '*.scss',
options: {
singleQuote: false
}
},
{
files: '*.md',
options: {}
}
]
};