FlowPacs/yudao-ui-admin-vue3/prettier.config.js

23 lines
881 B
JavaScript
Raw Normal View History

2022-07-18 19:06:37 +08:00
module.exports = {
2022-11-30 10:30:58 +08:00
printWidth: 100, // 每行代码长度默认80
tabWidth: 2, // 每个tab相当于多少个空格默认2ab进行缩进默认false
useTabs: false, // 是否使用tab
semi: false, // 声明结尾使用分号(默认true)
2022-07-18 19:06:37 +08:00
vueIndentScriptAndStyle: false,
2022-11-30 10:30:58 +08:00
singleQuote: true, // 使用单引号默认false
2022-07-18 19:06:37 +08:00
quoteProps: 'as-needed',
2022-11-30 10:30:58 +08:00
bracketSpacing: true, // 对象字面量的大括号间使用空格默认true
trailingComma: 'none', // 多行使用拖尾逗号默认none
2022-07-18 19:06:37 +08:00
jsxSingleQuote: false,
2022-11-30 10:30:58 +08:00
// 箭头函数参数括号 默认avoid 可选 avoid| always
// avoid 能省略括号的时候就省略 例如x => x
// always 总是有括号
2022-07-18 19:06:37 +08:00
arrowParens: 'always',
insertPragma: false,
requirePragma: false,
proseWrap: 'never',
htmlWhitespaceSensitivity: 'strict',
endOfLine: 'auto',
rangeStart: 0
}