Skip to content

Latest commit

 

History

History
48 lines (36 loc) · 731 Bytes

CONTRIBUTING.md

File metadata and controls

48 lines (36 loc) · 731 Bytes

Contributing to Projet-prod

Code requirements:

Rule 1:

ABSOLUTE GARBAGE 😡😡🤬:

if (canJump()) {
  /*[...]*/
}

Good 😇:

if (canJump())
{
  /*[...]*/
}

Rule 2:

Comments should be exclusively in English

// This is a comment
bool canJump()
{
  /*[...]*/
}

Rule 3:

Clean code

Reference : https://gist.github.com/wojteklu/73c6914cc446146b8b533c0988cf8d29

Rule 4:

When a feature is in the test phase, the branch must not be merge without agreement. You must create a review request and assign to the person of your choice:

  • an application developer outside the branch
  • the code manager
  • the scrum manager
  • the project manager. Please do not assign yourself.