Skip to content

Latest commit

 

History

History
12 lines (11 loc) · 662 Bytes

contributing.md

File metadata and controls

12 lines (11 loc) · 662 Bytes

Bug reports

  • Provide information about the operating system
  • Provide steps for reproducing the bug

Code style

  • All the code written must be compliant with c++20 in order to maintain coherence.
  • Try to avoid platform-specific code by all means except for specific implementations.
  • All files in lower case and snake_case.
  • All common variable and function names in camelCase.
  • All private/protected variables of classes must be prefixed with an m.
  • Maintain the directory structure so that navigation, debugging and building the project is easier.
  • Use the Allman indentation style.