Skip to content

Latest commit

 

History

History
30 lines (25 loc) · 952 Bytes

CONTRIBUTING.md

File metadata and controls

30 lines (25 loc) · 952 Bytes

How to contribute

We are glad you've decided to make a contribution, because we always need volunteer developers to improve quality of this project. Our issues page is here

Steps

  1. Fork this project.
  2. Clone to you local workspace.
  3. Pick the issue you would like to participate in.
  4. Work on it.
  5. Update your fork.
  6. Sync with our main branch
git remote add upstream https://github.com/LdDl/yolo-go.git
git fetch upstream
git checkout main
git merge upstream/main

Usage main or master depends on your enviroment

  1. Make pull request. Call PR as [issue-%ISSUE_NUMBER%]

Important notes

  1. Test coverage is important thing.
  2. gofmt is necessary.
  3. Code comments are good, but not to many of them.
  4. It is better not to have multiple code-overlapping commits in single PR.
  5. If this library was updated during
  6. Describe the solution in PR comment if it possible.