qiwen-file-web/.prettierrc.js

12 lines
472 B
JavaScript
Raw Normal View History

2024-08-26 09:43:30 +08:00
module.exports = {
printWidth: 80, // 每行最大字符数为 80, 如果超出则换行
tabWidth: 2, // 一个制表符等于的空格数
useTabs: true, // 使用 tab 缩进
singleQuote: true, // 使用单引号
semi: false, // 代码结尾不加分号
trailingComma: 'none', // 不自动添加逗号
bracketSpacing: true, // 控制对象字面量的空格输出
jsxBracketSameLine: false, // 将多行jsx的>放到下一行
endOfLine: 'auto'
}