Dev Rules
Rule of dev team
Must
Create a branch for each feature starting with the Issue ID in Jira.
Assign yourself to the issue before coding.
Keep the default commit message on the merge commit. Example: "Merge branch 'develop' into VGC-89-Add-setting-send-to-me"
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