Dev Rules

Rule of dev team

Must

Do not

  • Don't write code of other features to the current feature you are coding.

  • Don't fix other bugs in the current feature you are coding.

  • Don't create the branch name starting with feature/** (for currently not accepted)

Should

  • Merge code from the main branch "currently is master" to your feature or branch before creating a merge request to another branch.

  • Clear unused code of your edited files on the current branch of your feature before creating a commit.

  • Use the Vscode editor and Eslint to format the code before creating a commit.

Last updated