初始化3.0.0版本

This commit is contained in:
zengqiao
2022-08-18 17:04:05 +08:00
parent 462303fca0
commit 51832385b1
2446 changed files with 93177 additions and 127211 deletions

10
km-console/.prettierrc.js Normal file
View File

@@ -0,0 +1,10 @@
module.exports = {
"printWidth": 140, // 指定代码长度,超出换行
"tabWidth": 2, // tab 键的宽度
"semi": true, // 结尾加上分号
"trailingComma": "es5", // 确保对象的最后一个属性后有逗号
singleQuote: true,
"bracketSpacing": true, // 大括号有空格 { name: 'rose' }
"insertPragma": false, // 是否在格式化的文件顶部插入Pragma标记以表明该文件被prettier格式化过了
"htmlWhitespaceSensitivity": "ignore", // html文件的空格敏感度控制空格是否影响布局
}