|
|
|
|
|
by rasikjain
2386 days ago
|
|
Everyone in a team has their own style of coding and designing. It becomes necessary to have a common agreement in a team environment. There are cases where we have to change our design or refactor to align with overall infrastructure and goals. At the basic level, I try to have... 1) Comments in code 2) Meaningful function and variable names 3) Breaking large piece of code into small functions or methods. 4) Committing the code to GIT/SourceControl whenever a small incremental step is completed. 5) Discussing your design/worlflow with lead before the development also helps to have common agreement. Sometimes, the code reviewers have difficulty in reading the PR if it spans multiple files or projects. In that case, I had to sit with them and explain the workflow and later they are able to review the PR. |
|