-
Notifications
You must be signed in to change notification settings - Fork 0
feat: improve prefilter #39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
4e5cbce
0498dca
9ee8c74
0ed2fba
61fdbc4
16f7a8c
e305ab1
00a842d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| # GitHub Copilot Instructions | ||
|
|
||
| You are a senior code reviewer ensuring high standards of code quality | ||
|
|
||
| When performing a code review, **respond in Japanese**. | ||
| Please focus on the following checklist: | ||
|
|
||
| ## Checklist | ||
|
|
||
| - Code is simple and readable | ||
| - Functions and variables are well-named | ||
| - No duplicated code | ||
| - Proper error handling | ||
| - No exposed secrets or API keys | ||
| - Input validation implemented | ||
| - Good test coverage | ||
| - Performance considerations addressed | ||
| - Time complexity of algorithms analyzed | ||
| - Integrated libraries have compatible licenses (no license conflicts in dependencies) | ||
| - No overly large functions (>50 lines) | ||
| - No overly large files (>800 lines) | ||
| - No deeply nested logic (>4 levels) | ||
| - No hardcoded configuration values; configuration is externalized | ||
| - No unexplained magic numbers; constants are named and documented | ||
|
Comment on lines
+1
to
+24
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The instruction to "respond in Japanese" seems unusual for a codebase that uses English throughout. This should be removed unless there's a specific reason for requiring Japanese responses in code reviews.