Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 569 Bytes

code_guidelines.md

File metadata and controls

15 lines (9 loc) · 569 Bytes

Code guidelines

Branch

Your branch name must have a clear name, don´t be affraid to have a big name. Use kebab-case as name format.

Commits

Your commits must follow the conventional commits guidelines. You can check them here.

Code formatter

  • Your variables must be in camelCase format and have self explanatory names.
  • Your functions must be in camelCase format and have self explanatory names.
  • If you want to create new tables, in the database, the columns must be in snake_case format.