Skip to content

Instantly share code, notes, and snippets.

Code Review Checklist

Overview

Comprehensive checklist for conducting thorough code reviews to ensure quality, security, and maintainability.

Don't run tests or linting, this is done automatically. Just inspect the code.

Review Categories

@paulallies
paulallies / gist:0052fab554b14bbfa3ef
Last active August 3, 2024 16:45
Remove node_modules from git repo
#add 'node_modules' to .gitignore file
git rm -r --cached node_modules
git commit -m 'Remove the now ignored directory node_modules'
git push origin <branch-name>