diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index c11b497..ee7bf62 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -86,7 +86,6 @@ - [ ] Code is self-documenting and follows project conventions - [ ] Docstrings/comments added for complex logic - [ ] README.md updated (if needed) -- [ ] CLAUDE.md updated (if needed) - [ ] API.md updated (if API changes) - [ ] CLI.md updated (if CLI changes) - [ ] CONTRIBUTING.md updated (if workflow changes) @@ -122,7 +121,6 @@ ### Pre-submission - [ ] I have read the [CONTRIBUTING.md](../CONTRIBUTING.md) guidelines -- [ ] I have read the [CLAUDE.md](../CLAUDE.md) developer guide - [ ] My code follows the project's coding standards - [ ] I have searched existing issues/PRs to avoid duplicates diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1df3c36..4d6885f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -6,7 +6,6 @@ Thank you for your interest in contributing to KohakuHub! We welcome contributio - **Discord:** https://discord.gg/xWYrkyvJ2s (Best for discussions) - **GitHub Issues:** Bug reports and feature requests -- **Development Guide:** See [CLAUDE.md](./CLAUDE.md) - **Roadmap:** See [Project Status](#project-status) below ## Getting Started @@ -44,7 +43,7 @@ cp docker-compose.example.yml docker-compose.yml ### Backend (Python) -Follow [CLAUDE.md](./CLAUDE.md) principles: +Follow following principles: - Modern Python (match-case, async/await, native types like `list[]`, `dict[]`) - Import order: **builtin → 3rd party → ours**, then **shorter paths first**, then **alphabetical** - `import os` before `from datetime import` @@ -153,7 +152,7 @@ app.include_router(commit_history.router, ...) # commit_history is a module ### Frontend (Vue 3) -Follow [CLAUDE.md](./CLAUDE.md) principles: +Follow following principles: - JavaScript only (no TypeScript), use JSDoc comments for type hints - Vue 3 Composition API with `