原来只有 `apps/web` 在 Prettier 下(配置在 `apps/web/.prettierrc.toml`、脚本在 web 的 package.json),后端和契约从来没格式化过 —— 手写在 100 列上下,`db/schema.ts` 还是 drizzle-kit pull 留下的 tab 缩进。两套口径分叉久了,跨端改一处就得记着「这边 什么风格」。 - 配置搬到根目录 `.prettierrc.toml`,内容不变(`semi=false`,其余全默认, printWidth 80 —— 和前端已有的格式一致,不另立一套宽度); - 脚本统一成根目录 `bun run fmt`,覆盖 `apps/*/src`、`apps/web/tests` 和两个构建 配置;web 自己那份 `fmt` 和重复的 prettier 依赖删掉; - `.prettierignore` 挡掉两类不该碰的:drizzle-kit 生成的 `src/db/meta/` 结构快照 (它是 db:generate 的比对输入,只该由 drizzle-kit 写)、unplugin 每次 dev 都会 重写的 `auto-imports.d.ts` / `components.d.ts`; - 全量跑了一遍。纯格式,无行为改动:api typecheck / check:routes / check:ast、 前端 type-check 全过,起 api 打了接口确认正常。前端这 39 个文件的小改动是 prettier 版本漂移(类型断言的换行口径变了),不是新配置带来的。 Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
@@ -41,7 +41,10 @@ export const messageListSchema = paginatedSchema(messageSchema)
|
||||
export const createMessageRequestSchema = z.object({
|
||||
recipientId: z.number().int().positive(),
|
||||
submissionId: z.string().min(1),
|
||||
message: z.string().min(1).max(1024 * 1024),
|
||||
message: z
|
||||
.string()
|
||||
.min(1)
|
||||
.max(1024 * 1024),
|
||||
})
|
||||
|
||||
export const reactionKeySchema = z.enum([
|
||||
@@ -54,7 +57,10 @@ export const reactionKeySchema = z.enum([
|
||||
"want_explain",
|
||||
])
|
||||
|
||||
export const reactionCountsSchema = z.record(reactionKeySchema, z.number().int())
|
||||
export const reactionCountsSchema = z.record(
|
||||
reactionKeySchema,
|
||||
z.number().int(),
|
||||
)
|
||||
export const reactionStateSchema = z.object({
|
||||
mine: reactionKeySchema.nullable(),
|
||||
counts: reactionCountsSchema.nullable(),
|
||||
@@ -130,13 +136,36 @@ export const exerciseAttemptRequestSchema = z.object({
|
||||
* 也不会让历史数据把学生端打不开。
|
||||
*/
|
||||
export const exerciseDataByType: Record<string, z.ZodType> = {
|
||||
mcq: z.object({ question: z.string(), options: z.array(z.string()), answer: z.array(z.number()) }),
|
||||
mcq: z.object({
|
||||
question: z.string(),
|
||||
options: z.array(z.string()),
|
||||
answer: z.array(z.number()),
|
||||
}),
|
||||
sort: z.object({ question: z.string(), lines: z.array(z.string()) }),
|
||||
fill: z.object({ question: z.string(), code: z.string() }),
|
||||
match: z.object({ question: z.string(), left: z.array(z.string()), right: z.array(z.string()), answer: z.array(z.number()) }),
|
||||
predict: z.object({ question: z.string(), code: z.string(), answer: z.array(z.string()) }),
|
||||
debug: z.object({ question: z.string(), lines: z.array(z.string()), answer: z.array(z.number()), explanation: z.string().optional() }),
|
||||
group: z.object({ question: z.string(), buckets: z.array(z.string()), items: z.array(z.string()), answer: z.array(z.number()) }),
|
||||
match: z.object({
|
||||
question: z.string(),
|
||||
left: z.array(z.string()),
|
||||
right: z.array(z.string()),
|
||||
answer: z.array(z.number()),
|
||||
}),
|
||||
predict: z.object({
|
||||
question: z.string(),
|
||||
code: z.string(),
|
||||
answer: z.array(z.string()),
|
||||
}),
|
||||
debug: z.object({
|
||||
question: z.string(),
|
||||
lines: z.array(z.string()),
|
||||
answer: z.array(z.number()),
|
||||
explanation: z.string().optional(),
|
||||
}),
|
||||
group: z.object({
|
||||
question: z.string(),
|
||||
buckets: z.array(z.string()),
|
||||
items: z.array(z.string()),
|
||||
answer: z.array(z.number()),
|
||||
}),
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -167,7 +196,9 @@ export type Tutorial = z.infer<typeof tutorialSchema>
|
||||
export type Exercise = z.infer<typeof exerciseSchema>
|
||||
export type TutorialProgress = z.infer<typeof tutorialProgressSchema>
|
||||
export type TutorialProgressPing = z.infer<typeof tutorialProgressPingSchema>
|
||||
export type ExerciseAttemptRequest = z.infer<typeof exerciseAttemptRequestSchema>
|
||||
export type ExerciseAttemptRequest = z.infer<
|
||||
typeof exerciseAttemptRequestSchema
|
||||
>
|
||||
|
||||
/**
|
||||
* 「已读」的门槛:累计停留满 3 分钟才算读过这一课。
|
||||
|
||||
Reference in New Issue
Block a user