Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 437 Bytes

CONTRIBUTING.md

File metadata and controls

9 lines (8 loc) · 437 Bytes

WL4Editor's Contributor's Guide

Here are some guidelines for contributing to this repository:

In a Nutshell:

  • Format code with the clang-format configuration that we provided.
  • Make sure the code compiles or mark as [WIP] when making a Pull request.
  • Avoid using new/delete/malloc/free/realloc, prefer smart pointers for memory management.
  • Avoid using C-Style Anything.
  • If you have to use C Libraries, use the C++ wrappers.