ufutx-pc-website/.prettierrc.cjs

13 lines
561 B
JavaScript
Raw Normal View History

2025-06-09 10:23:45 +08:00
// .prettierrc.cjs
module.exports = {
printWidth: 120, // 每行最大字符数
tabWidth: 2, // 缩进空格数
useTabs: false, // 不使用制表符缩进
semi: false, // 句末不加分号
singleQuote: true, // 使用单引号
quoteProps: 'as-needed', // 对象属性仅在必要时加引号
trailingComma: 'none', // 不使用尾随逗号
bracketSpacing: true, // 对象括号内加空格
bracketSameLine: false, // HTML 标签的 > 不另起一行
arrowParens: 'avoid', // 箭头函数参数仅在必要时加括号
}