iridium/CONTRIBUTING.md

623 B

Contributing guidelines

Code Formatting

Always use clang-format to format code before contributing, clang-format may be disabled in certain contexts whree its formatting causes code to be less readable than manually formatted code such as array initializers with a specific layout that the formatter does not know about.

Naming conventions

Pascal or Camel Case

For names written in this case, write abbreviations and acronyms as single words, e.g. Glfw instead of GLFW.

Class names

Class names are always written in PascalCase.

Local variables

Local variables are always written in snake_case.