build(clinical-web): 添加 ESLint 和 Prettier 配置

This commit is contained in:
yelan
2026-08-27 10:51:40 +08:00
parent 3f27d4dd3a
commit 01827bf304
18 changed files with 2784 additions and 34 deletions

View File

@@ -7,6 +7,10 @@
"dev:clinical": "npm --prefix clinical-web run dev",
"dev:patient": "npm --prefix patient-h5 run dev",
"build:clinical": "npm --prefix clinical-web run build",
"build:patient": "npm --prefix patient-h5 run build"
"build:patient": "npm --prefix patient-h5 run build",
"lint": "npm --prefix clinical-web run lint && npm --prefix patient-h5 run lint",
"lint:fix": "npm --prefix clinical-web run lint:fix && npm --prefix patient-h5 run lint:fix",
"format": "npm --prefix clinical-web run format && npm --prefix patient-h5 run format",
"format:check": "npm --prefix clinical-web run format:check && npm --prefix patient-h5 run format:check"
}
}