DEV Community

Cover image for Code Reviews - Release 0.3
Japneet Singh
Japneet Singh

Posted on

Code Reviews - Release 0.3

Introduction

Code review is when you go through your code and make sure everything works. The most popular approach for assessing feature design and implementation is code review.

Your team can devise review procedures that will increase the quality of your code while also fitting into your workflow.

Code Review Checklist

A code review checklist is a set of rules or questions that you and your team will use during the code review process. Many teams, whether they realise it or not, are already performing code reviews.

  1. What to Look for When Conducting a Code Review
  2. Before reviewing, build and test.
  3. Do not spend more than 60 minutes reviewing the code.
  4. At any given time, no more than 400 lines should be checked.
  5. Communicate Goals and Expectations with Feedback.
  6. Participate in the Code Review Process with Everyone.

My First review code

Audited and fixed functions-arrays-and-structs.md #96

  1. I found this colSpan needs to be replaced with colspan. Line 838: colspan
  2. Also, Maybe removing the ... and adding it to end. Line 32: type identifier(type [parameter], ...);

Code-Review #1

My Second review code

Reviewed: Tutorial for Converting Table-like Diagrams into Images
Code-Review #2

Conclusion

Code review is a software quality assurance process in which the source code of software is manually reviewed by a team or using an automated code review tool. The goal is to find bugs, fix errors, and, in most cases, improve code quality.

Top comments (0)