Added learning resources for JavaScript, React,HTML and Git - #11
jagriti-aswal wants to merge 2 commits into
Conversation
|
Warning Rate limit exceeded
To keep reviews running without waiting, you can enable usage-based add-on for your organization. This allows additional reviews beyond the hourly cap. Account admins can enable it under billing. ⌛ 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: defaults Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (1)
📝 WalkthroughWalkthroughThis PR adds four new educational resource links to the project bridge recommendations configuration: freeCodeCamp courses for JavaScript, React, and Git/GitHub, plus an MDN HTML guide. These entries are appended to existing or newly created sections in the resources YAML file. ChangesResource Recommendations
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes Poem
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Tip 💬 Introducing Slack Agent: The best way for teams to turn conversations into code.Slack Agent is built on CodeRabbit's deep understanding of your code, so your team can collaborate across the entire SDLC without losing context.
Built for teams:
One agent for your entire SDLC. Right inside Slack. 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. Review rate limit: 0/1 reviews remaining, refill in 51 minutes and 53 seconds.Comment |
There was a problem hiding this comment.
Actionable comments posted: 2
🧹 Nitpick comments (1)
engine/projectbridge/recommend/resources.yaml (1)
178-180: ⚡ Quick winNew HTML section is placed out-of-order at the end of the file.
The file is organized into clear logical groups (languages → frameworks → infra/DevOps → databases → API protocols → tools). The
HTMLentry is appended afterKafka(a message broker), which breaks this structure. It belongs in the languages section alongsideJavaScriptandTypeScript(lines 8–42), or at minimum near the frontend framework entries (React, Vue, Angular).♻️ Suggested placement (in the languages section, after TypeScript)
TypeScript: - label: "TypeScript Handbook" url: "https://www.typescriptlang.org/docs/handbook/" +HTML: + - label: "MDN HTML Guide" + url: "https://developer.mozilla.org/en-US/docs/Web/HTML" Go:And remove the block from the end of the file:
-HTML: - - label: "MDN HTML Guide" - url: "https://developer.mozilla.org/en-US/docs/Web/HTML"🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed. In `@engine/projectbridge/recommend/resources.yaml` around lines 178 - 180, The new `HTML` resource entry (label "MDN HTML Guide", url "https://developer.mozilla.org/en-US/docs/Web/HTML") is placed at the end of the file after `Kafka`; move that whole `HTML` block into the languages group near `JavaScript`/`TypeScript` — specifically insert it after the `TypeScript` resource so it sits with other languages (or at least next to frontend frameworks like `React`/`Vue`/`Angular`), and remove the duplicate block from the end of the file so the entry appears only once.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In `@engine/projectbridge/recommend/resources.yaml`:
- Around line 56-57: Update the resource label to accurately reflect the linked
certification: replace the existing label "freeCodeCamp React Course" (paired
with url "https://www.freecodecamp.org/learn/front-end-development-libraries/")
with a name such as "freeCodeCamp Front End Development Libraries Course" so the
label matches the actual content of the URL.
- Around line 164-165: The resource entry's label "freeCodeCamp Git & GitHub
Course" is inaccurate because the URL points to a /news/ article; update the
label to accurately reflect the content (e.g., change the label string to
"freeCodeCamp Git & GitHub Tutorial" or similar), or alternatively replace the
URL with a canonical freeCodeCamp /learn/ course URL if you prefer to keep
"Course"; locate the entry by the existing label text and URL to make the change
and ensure it matches the style of the other freeCodeCamp entries.
---
Nitpick comments:
In `@engine/projectbridge/recommend/resources.yaml`:
- Around line 178-180: The new `HTML` resource entry (label "MDN HTML Guide",
url "https://developer.mozilla.org/en-US/docs/Web/HTML") is placed at the end of
the file after `Kafka`; move that whole `HTML` block into the languages group
near `JavaScript`/`TypeScript` — specifically insert it after the `TypeScript`
resource so it sits with other languages (or at least next to frontend
frameworks like `React`/`Vue`/`Angular`), and remove the duplicate block from
the end of the file so the entry appears only once.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: defaults
Review profile: CHILL
Plan: Pro
Run ID: 3bdcb3b5-71dc-4e6e-8ddc-e79cca1ed8a0
📒 Files selected for processing (1)
engine/projectbridge/recommend/resources.yaml
| - label: "freeCodeCamp React Course" | ||
| url: "https://www.freecodecamp.org/learn/front-end-development-libraries/" |
There was a problem hiding this comment.
React course label is broader than the linked certification.
The URL https://www.freecodecamp.org/learn/front-end-development-libraries/ is the Front End Development Libraries certification, which covers jQuery, Bootstrap, Sass, React, and Redux — not React exclusively. Consider a more accurate label such as "freeCodeCamp Front End Libraries Course" to set correct expectations for users.
📝 Suggested label fix
- - label: "freeCodeCamp React Course"
+ - label: "freeCodeCamp Front End Libraries Course"
url: "https://www.freecodecamp.org/learn/front-end-development-libraries/"📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
| - label: "freeCodeCamp React Course" | |
| url: "https://www.freecodecamp.org/learn/front-end-development-libraries/" | |
| - label: "freeCodeCamp Front End Libraries Course" | |
| url: "https://www.freecodecamp.org/learn/front-end-development-libraries/" |
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@engine/projectbridge/recommend/resources.yaml` around lines 56 - 57, Update
the resource label to accurately reflect the linked certification: replace the
existing label "freeCodeCamp React Course" (paired with url
"https://www.freecodecamp.org/learn/front-end-development-libraries/") with a
name such as "freeCodeCamp Front End Development Libraries Course" so the label
matches the actual content of the URL.
Summary
Added additional learning resource links to
resources.yamlfor JavaScript, React, Git, and HTML to improve the availability of helpful documentation for developers.Type of Change
Checklist
make checkpasses (lint + tests)schema_version(if applicable)Summary by CodeRabbit