zb-admin/.prettierrc.js

17 lines
519 B
JavaScript
Raw Normal View History

module.exports = {
// 一行的字符数如果超过会进行换行默认为80
2023-12-22 09:46:27 +00:00
printWidth: 140,
// 缩进制表符宽度 | 空格数
tabWidth: 2,
// 行位是否使用分号默认为true
semi: false,
vueIndentScriptAndStyle: true,
// 字符串是否使用单引号默认为false使用双引号
singleQuote: true,
// 是否使用尾逗号,有三个可选值"<none|es5|all>"
trailingComma: 'all',
proseWrap: 'never',
htmlWhitespaceSensitivity: 'strict',
endOfLine: 'auto',
};