1
0
mirror of https://github.com/CLIUtils/CLI11.git synced 2025-05-02 21:53:51 +00:00
CLI11/CONTRIBUTING.md
2017-06-01 09:50:03 -04:00

10 lines
362 B
Markdown

# A few notes on contributions
If you want to add code, please make sure it passes the clang-format style (I am using LLVM 4.0):
```bash
git ls-files -- '.cpp' '.hpp' | xargs clang-format -i -style=file
```
It is also a good idea to check this with `clang-tidy`; automatic fixes can be made using `-DCLANG_TIDY_FIX-ON` (resets to `OFF` when rerunning CMake).