Skip to content

Latest commit

 

History

History
9 lines (5 loc) · 516 Bytes

CONTRIBUTING.md

File metadata and controls

9 lines (5 loc) · 516 Bytes

Code Formatting

We use this script to install a consistent version of clang-format to format the code base. The format is automatically checked via a Travis CI build as well. Run the following script locally to ensure formatting is ready to merge:

make format

We also use clang-tidy as a C++ linter. Run the following command to lint and ensure your code is ready to merge:

make tidy