-
Notifications
You must be signed in to change notification settings - Fork 8
/
.prettierrc.js
58 lines (56 loc) · 1.37 KB
/
.prettierrc.js
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
/*
* @Description:
* @Author: zk-chen
* @Date: 2021-04-13 10:42:41
* @LastEditTime: 2021-04-13 10:42:41
* @LastEditors: zk-chen
* @FilePath: /bilibili-banner/.prettierrc.js
*/
module.exports = {
// 一行的字符数,如果超过会进行换行,默认为80
printWidth: 80,
// tab缩进大小,默认为2
tabWidth: 2,
// 使用tab缩进,默认false
useTabs: false,
// 使用分号, 默认true
semi: false,
// 有效的结尾逗号(对象,数组等)
trailingComma: 'none',
// 使用单引号, 默认false(在jsx中配置无效, 默认都是双引号)
singleQuote: true,
// 对象中的空格 默认true
// true: { foo: bar }
// false: {foo: bar}
bracketSpacing: true,
// JSX标签闭合位置 默认false
// false: <div
// className=""
// style={{}}
// >
// true: <div
// className=""
// style={{}} >
jsxBracketSameLine: false,
// 箭头函数参数括号 默认avoid 可选 avoid| always
// avoid 能省略括号的时候就省略 例如x => x
// always 总是有括号
arrowParens: 'always',
proseWrap: 'never',
htmlWhitespaceSensitivity: 'strict',
endOfLine: 'lf',
overrides: [
{
files: '.prettierrc.js',
options: {
parser: 'json'
}
},
{
files: 'stylelint.config.js',
options: {
parser: 'json'
}
}
]
};