mirror of
https://github.com/KarolChang/jm-expense-vue-ts.git
synced 2024-12-25 19:28:35 +00:00
15 lines
286 B
JavaScript
15 lines
286 B
JavaScript
|
module.exports = {
|
|||
|
// 行寬
|
|||
|
printWidth: 120,
|
|||
|
// 分號
|
|||
|
semi: false,
|
|||
|
// 單引號
|
|||
|
singleQuote: true,
|
|||
|
// 末端的逗號 ( 'all' 全都要逗號 )
|
|||
|
trailingComma: "none",
|
|||
|
// 縮排空格
|
|||
|
tabWidth: 2,
|
|||
|
// 大括號內的首尾需要空格
|
|||
|
bracketSpacing: true,
|
|||
|
};
|