添加代码格式化文件

This commit is contained in:
BianLzhaoMin 2024-08-06 16:51:30 +08:00
parent 1bacdc35e8
commit cc5da89386
2 changed files with 42 additions and 32 deletions

10
prettier.config.js Normal file
View File

@ -0,0 +1,10 @@
module.exports = {
tabWidth: 4,
semi: false,
vueIndentScriptAndStyle: false,
singleQuote: true,
trailingComma: 'all',
proseWrap: 'never',
htmlWhitespaceSensitivity: 'strict',
endOfLine: 'auto',
}