1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
| module.exports = {
| printWidth: 800, // 单行宽度限制
| tabWidth: 2, // tab 使用两个空格
| useTabs: false, // 不使用制表符缩进,使用空格缩进
| semi: true, // 代码需要分号结尾
| singleQuote: true, // 单引号
| bracketSpacing: true, // 对象左右两侧需要空格
| bracketSameLine: false, // html 关闭标签换行
| arrowParens: 'avoid', // 单参数的箭头函数参数不需要括号
| proseWrap: 'never', // 参考 https://prettier.io/docs/en/options.html#prose-wrap
| trailingComma: 'none', // 参考 https://prettier.io/docs/en/options.html#trailing-commas
| quoteProps: 'consistent' // Only add quotes when necessary
| };
|
|