【调整】增加部署雨云

This commit is contained in:
cai
2026-01-13 17:47:39 +08:00
parent 4e49ca075a
commit 367c1a1096
1094 changed files with 179074 additions and 45 deletions

11
frontend/env/prettier/index.js vendored Normal file
View File

@@ -0,0 +1,11 @@
export default {
tabWidth: 2, // 缩进
useTabs: true, // 缩进方式
semi: false, // 语句结尾是否加分号
singleQuote: true, // 单引号
printWidth: 120, // 换行长度
arrowParens: 'always', // 箭头函数参数
bracketSpacing: true, // 对象花括号内是否加空格
endOfLine: 'auto', // 换行符
vueIndentScriptAndStyle: true, // vue文件内script和style标签缩进
}

17
frontend/env/prettier/package.json vendored Normal file
View File

@@ -0,0 +1,17 @@
{
"name": "@baota/prettier",
"version": "1.0.0",
"type": "module",
"description": "",
"exports": {
".": "./index.js"
},
"dependencies": {},
"devDependencies": {
"@baota/typescript": "workspace:*",
"prettier": "^3.5.3"
},
"keywords": [],
"author": "",
"license": "ISC"
}

View File

@@ -0,0 +1,3 @@
import prettierConfig from './index.js'
export default prettierConfig

4
frontend/env/prettier/tsconfig.json vendored Normal file
View File

@@ -0,0 +1,4 @@
{
"extends": "@baota/typescript/base.json",
"include": ["**/*.{js,ts,jsx,tsx}", "eslint.config.ts", "./types.d.ts"]
}