Add clang-format usage example to contributing guidelines

This commit is contained in:
Andrey Kalmykov 2024-02-18 18:32:50 +01:00
parent 5578380734
commit 4efcd43514

View File

@ -52,4 +52,4 @@ if (blah-blah) {
doFooBar();
}
```
- Do not use tabs and use <TODO> spaces for intendation
- Format your changes with `clang-format`. You can use it to format a portion of a file: `clang-format --lines=<first line number>:<last line number> path/to/file` (number of last line is *inclusive*, i.e. `--lines=15:17` formats lines 15, 16 and 17)