Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 677 Bytes

CONTRIBUTING.md

File metadata and controls

17 lines (12 loc) · 677 Bytes

Contributing Guidelines

Basic guidelines

  1. Every new change is implemented in a separate branch, then merged into the master via pull requests.
  2. Follow GitHub flow.
  3. Follow Google C++ Style Guide
  4. Follow CppCoreGuidelines.
  5. Use clang-format to format your code.

Requirements for Pull-Requests

A Pull-Request can be merged into master only if:

  1. Code is formatted with clang-format.
  2. Continuous Integration system is green (all checks passed).
  3. 1 approving review is present.