Skip to content

Commit 4da285f

Browse files
authored
Merge pull request #3204 from AtCoder-NoviSteps/#3203
chore: Update docs (#3203)
2 parents 99b462d + fa65dde commit 4da285f

3 files changed

Lines changed: 15 additions & 11 deletions

File tree

AGENTS.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
A web service for tracking submissions on AtCoder and other competitive programming sites, which are graded by difficulty (Q11-D6).
44

5+
## Guidelines
6+
7+
Always prefer simplicity over pathological correctness. YAGNI, KISS, DRY. No backward-compat shims or fallback paths unless they come free without adding cyclomatic complexity.
8+
59
## Tech Stack
610

711
SvelteKit 2 + Svelte 5 (Runes) + TypeScript | PostgreSQL + Prisma | Flowbite Svelte + Tailwind 4 | Vitest + Playwright

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -252,11 +252,11 @@
252252

253253
例:
254254

255-
`git commit -m ":sparkles: Add hoge feature (#998244353)"`
255+
`git commit -m "feat: Add new feature (#998244353)"`
256256

257-
`git commit -m ":books: Update README (#1333)"`
257+
`git commit -m "docs: Update README (#1333)"`
258258

259-
`git commit -m ":pencil2: Fix typo (#10007)"`
259+
`git commit -m "chore: Fix typo (#10007)"`
260260

261261
4. プルリクエストを作成する前に、加筆・修正した内容を確認します。
262262

docs/guides/architecture.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,12 @@ src/features/
7070
│ │ ├── grade-list/ # グレード別
7171
│ │ ├── detail/
7272
│ │ │ ├── statistics/ # AtCoder Problems の difficulty、JOI 難易度、AC人数 など
73-
│ │ │ ├── votes/ # AtCoder NoviSteps の難易度、タグを投票
7473
│ │ │ └── comments/ # (要確認) 管理者: 解説、一般ユーザ: コメント
7574
│ │ └── shared/
75+
├── votes/ # AtCoder NoviSteps における難易度、タグを投票
7676
├── admin/
7777
│ ├── components/
78-
│ │ ├── account_transfer/
78+
│ │ ├── account-transfer/
7979
│ │ ├── tasks-for-import/
8080
│ │ └── shared/
8181
│ ...
@@ -93,12 +93,12 @@ src/features/
9393

9494
現在の `src/lib/` からの抽出候補:
9595

96-
| Feature | 抽出対象 |
97-
| ---------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- |
98-
| **tasks** | `TaskTables/*`, `TaskGrades/*`, `stores/active_problem_list_tab.svelte.ts`(※ `TaskGradeList`, `TaskList` 等は複数ドメインで使うため `lib/` に残す) |
99-
| **admin** | `TagForm`, `TagListForEdit`, `TaskForm`, `TaskListForEdit`, `services/tags.ts`, `services/task_tags.ts` |
100-
| **auth** | `AuthForm`, `utils/auth_forms.ts`, `types/auth_forms.ts` |
101-
| **user-profile** | `UserProfile`, `UserAccountDeletionForm` |
96+
| Feature | 抽出対象 |
97+
| ---------------- | ------------------------------------------------------------------------------------------------------------------------------------ |
98+
| **tasks** | `TaskGrades/*`, `stores/active_problem_list_tab.svelte.ts`(※ `TaskGradeList`, `TaskList` 等は複数ドメインで使うため `lib/` に残す) |
99+
| **admin** | `TagForm`, `TagListForEdit`, `TaskForm`, `TaskListForEdit`, `services/tags.ts`, `services/task_tags.ts` |
100+
| **auth** | `AuthForm`, `utils/auth_forms.ts`, `types/auth_forms.ts` |
101+
| **user-profile** | `UserProfile`, `UserAccountDeletionForm` |
102102

103103
### Feature 間の依存ルール
104104

0 commit comments

Comments
 (0)