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

15 lines
286 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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