How I Finished My AI Code Reviewer Using GitHub Copilot
Mohit Pandey developed Bugloo, a free AI code reviewer aimed at helping students improve their coding skills. The tool analyzes code snippets, providing feedback on bugs, style issues, and overall quality. After overcoming initial challenges, Pandey successfully integrated features like auto language detection and proper error handling, making Bugloo a viable project for potential recruiters.
- ▪Bugloo is a free AI code reviewer designed for students to enhance their coding skills.
- ▪The tool provides a breakdown of bugs, style issues, and a quality score for submitted code snippets.
- ▪Pandey improved the project by implementing features such as auto language detection and proper error handling.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 3954745) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Mohit Pandey Posted on May 27 How I Finished My AI Code Reviewer Using GitHub Copilot #devchallenge #githubchallenge GitHub “Finish-Up-A-Thon” Challenge Submission This is a submission for the GitHub Finish-Up-A-Thon Challenge What I Built In college, nobody really reviews your code. You submit assignments, get a grade, and move on. There's no one telling you "this function is doing too much" or "you're ignoring this edge case." I got tired of that, so I built Bugloo.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).