summaryrefslogtreecommitdiff
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
authorThibault "bui" Koechlin2017-12-28 17:04:06 +0100
committerjvoisin2017-12-28 17:04:06 +0100
commit9f5e8d12f05fb24c915a5266a1e908a75c8aed08 (patch)
tree9160075ea943c7fd29a3923f844a0ac0d6b8b457 /CONTRIBUTING.md
parent62c48bf9a85e0294b7b32cea438e904e1cd50669 (diff)
Clang-format pass
- `clang-format --style="{BasedOnStyle: google, SortIncludes: false}" -i snuffleu*.c sp_*.c sp_*.h` - Update the documentation accordingly
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r--CONTRIBUTING.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 34cfd02..f8e8f37 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -58,7 +58,7 @@ launching it, in order to run the failing test inside GDB.
58 58
59Your patch should follow the same conventions & pass the same code quality 59Your patch should follow the same conventions & pass the same code quality
60checks as the rest of the project. We're using [clang-format](http://clang.llvm.org/docs/ClangFormat.html) to 60checks as the rest of the project. We're using [clang-format](http://clang.llvm.org/docs/ClangFormat.html) to
61ensure a consistent code-style. Please run it with `clang-format -style=google` 61ensure a consistent code-style. Please run it with `clang-format --style="{BasedOnStyle: google, SortIncludes: false}"`
62before committing, or even better, use a [pre-commit hook](https://github.com/andrewseidl/githook-clang-format). 62before committing, or even better, use a [pre-commit hook](https://github.com/andrewseidl/githook-clang-format).
63 63
64### 6. Make a Pull Request 64### 6. Make a Pull Request