-
Notifications
You must be signed in to change notification settings - Fork 0
chore: willboosterify this repo #557
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
Conversation
Summary of ChangesHello @exKAZUu, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request integrates 'willbooster' practices into the repository by introducing a new, consistent guideline for test debugging across several documentation files. It also streamlines project configuration by removing specific SQLite file patterns from ignore lists and updates two development dependencies to their latest patch versions, ensuring a more robust and up-to-date development environment. Highlights
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
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.
Code Review
このプルリクエストは、willboosterifyによるリポジトリの自動更新のようです。いくつかのドキュメントファイルに新しい指示が追加され、.gitignoreと.prettierignoreからSQLiteファイルの無視設定が削除されています。また、yarn.lockファイルが更新され、依存関係がアップデートされています。全体的に問題ない変更ですが、ignoreファイルからSQLiteのパターンが削除された点について、意図した変更かどうか確認が必要です。データベースファイルをバージョン管理に含めることは、一般的に推奨されません。
| temp/ | ||
| tmp/ | ||
| *.sqlite3* | ||
|
|
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.
| temp/ | ||
| tmp/ | ||
| *.sqlite3* | ||
|
|
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.
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.
Pull request overview
This PR applies willboosterify standardization to the repository, updating dependencies, refining ignore patterns, and enhancing AI agent instructions with a new testing guideline.
- Dependency updates:
baseline-browser-mapping(2.9.0 → 2.9.2) andupdate-browserslist-db(1.2.1 → 1.2.2) - Removed
*.sqlite3*pattern from .gitignore and .prettierignore in packages/wb - Added new instruction to gather debug information before fixing tests across all AI instruction files
Reviewed changes
Copilot reviewed 6 out of 7 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| yarn.lock | Updated checksums for baseline-browser-mapping and update-browserslist-db package versions |
| packages/wb/.prettierignore | Removed sqlite3 pattern from prettier ignore list |
| packages/wb/.gitignore | Removed sqlite3 pattern from git ignore list |
| GEMINI.md | Added instruction to gather debug info before modifying tests |
| CLAUDE.md | Added instruction to gather debug info before modifying tests |
| AGENTS.md | Added instruction to gather debug info before modifying tests |
| .cursor/rules/general.mdc | Added instruction to gather debug info before modifying tests |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| @willbooster/ | ||
| dist/ | ||
| temp/ | ||
| tmp/ |
Copilot
AI
Dec 10, 2025
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.
Removing *.sqlite3* from .prettierignore may cause SQLite database files to be formatted by prettier, which could corrupt binary database files. The codebase uses several sqlite3 files (e.g., prod.sqlite3, restored.sqlite3) in db/ and prisma/ directories. Binary database files should not be formatted. Consider adding back *.sqlite3* or more specific patterns like *.sqlite3 and *.sqlite3-*.
| temp/ | ||
| tmp/ | ||
| *.sqlite3* | ||
|
|
Copilot
AI
Dec 10, 2025
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.
Removing *.sqlite3* from .gitignore may cause SQLite database files to be tracked by git. The codebase uses several sqlite3 files (e.g., prod.sqlite3, restored.sqlite3) in db/ and prisma/ directories as seen in src/commands/prisma.ts and src/scripts/prismaScripts.ts. These database files should remain ignored to prevent them from being committed to the repository. Consider adding back *.sqlite3* or more specific patterns like *.sqlite3 and *.sqlite3-*.
| # Ignore SQLite database files | |
| *.sqlite3 | |
| *.sqlite3-* |
37196fe to
2714d56
Compare
No description provided.