From 4efcd4351459192c47850950999e3a9bb56f97aa Mon Sep 17 00:00:00 2001 From: Andrey Kalmykov Date: Sun, 18 Feb 2024 18:32:50 +0100 Subject: [PATCH] Add clang-format usage example to contributing guidelines --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e2cc4bfc..9358c4d6 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -52,4 +52,4 @@ if (blah-blah) { doFooBar(); } ``` -- Do not use tabs and use spaces for intendation \ No newline at end of file +- Format your changes with `clang-format`. You can use it to format a portion of a file: `clang-format --lines=: path/to/file` (number of last line is *inclusive*, i.e. `--lines=15:17` formats lines 15, 16 and 17)