zb-admin/.prettierrc.js

15 lines
465 B
JavaScript
Raw Normal View History

module.exports = {
// 一行的字符数如果超过会进行换行默认为80
printWidth: 100,
// 行位是否使用分号默认为true
semi: false,
vueIndentScriptAndStyle: true,
// 字符串是否使用单引号默认为false使用双引号
singleQuote: true,
// 是否使用尾逗号,有三个可选值"<none|es5|all>"
trailingComma: 'all',
proseWrap: 'never',
htmlWhitespaceSensitivity: 'strict',
endOfLine: 'auto',
};