jm-expense-vue-ts/.Prettierrc.js

15 lines
286 B
JavaScript
Raw Normal View History

2021-12-14 08:00:06 +00:00
module.exports = {
// 行寬
printWidth: 120,
// 分號
semi: false,
// 單引號
singleQuote: true,
// 末端的逗號 'all' 全都要逗號 )
trailingComma: "none",
// 縮排空格
tabWidth: 2,
// 大括號內的首尾需要空格
bracketSpacing: true,
};