Conversation
…ges directory to .vscodeignore
|
Warning Rate limit exceeded
You’ve run out of usage credits. Purchase more in the billing tab. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (2)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Code Review
This pull request updates the demo image in the README to use an absolute GitHub URL and adds the images directory to the .vscodeignore file. Feedback suggests reverting the image path to a relative one and including the images directory in the extension package to ensure offline availability and better resilience across repository changes.
| ## Demo | ||
|
|
||
|  | ||
|  |
There was a problem hiding this comment.
Using a hardcoded absolute URL for the demo image is generally discouraged for VS Code extensions.
- Resilience: If the repository is renamed, moved, or the default branch changes, this link will break. Both GitHub and the VS Code Marketplace automatically resolve relative paths using the repository metadata.
- Offline Support: Using a relative path allows the image to be bundled within the
.vsixpackage, ensuring the documentation remains fully functional in the VS Code extension details view even without an internet connection. - Branch Consistency: Absolute URLs pointing to
mainwon't reflect updates to the image in feature branches or pull requests.
Unless the image is exceptionally large and you specifically want to exclude it from the bundle to minimize package size, a relative path is preferred.
|  | |
|  |
| .vscode/** | ||
| .vscode-test/** | ||
| out/test/** | ||
| images/** |
There was a problem hiding this comment.
Excluding the images directory from the extension package prevents assets from being available offline in the VS Code extension manager. If the demo image is reverted to a relative path in the README.md (as suggested), this line should be removed to ensure the image is bundled. If the goal was to reduce the .vsix file size, consider optimizing the GIF (e.g., using a tool like gifsicle) instead of hosting it externally.
No description provided.