Skip to content

Latest commit

 

History

History
53 lines (36 loc) · 1.83 KB

CONTRIBUTING.md

File metadata and controls

53 lines (36 loc) · 1.83 KB

CONTRIBUTING

What is the workflow?

  1. Create and describe your proposal/bug in an issue.
  2. Create a new branch and merge request with the pattern 1-my-feature.
  3. Commit your code to the commit convention.

Convention of Commits and Semantic Version

Commit Structure

type(escope): short description

What does the modification do?
why was it modified?

#issue
  • fixed Fix a bug
  • added Add a new feature
  • removed Remove a peace of code
  • updated Update any thing. e.g. feature, piece, refact

Semantic Version

  • merged -> Major
  • added -> Minor
  • fixed -> Patch

References