- Every new change is implemented in a separate branch, then merged into the
master
via pull requests. - Follow GitHub flow.
- Follow Google C++ Style Guide
- Follow CppCoreGuidelines.
- Use
clang-format
to format your code.
A Pull-Request can be merged into master
only if:
- Code is formatted with
clang-format
. - Continuous Integration system is green (all checks passed).
- 1 approving review is present.