Code review principle: If the check can be automated, it should be automated
Code review principle:
If the check can be automated, it should be automated.
Examples:
✅Do tests pass?
✅Does the app build?
✅Are there spelling errors?
✅Is there any unused code?
✅Is code properly formatted?
✅Is this using deprecated features?
✅Does this honor our coding standards?
All these checks can be automated.