From 6c6e4209dc5c62344a6e2f76890c049b35e7aff6 Mon Sep 17 00:00:00 2001 From: Otto Moerbeek Date: Mon, 23 Sep 2019 11:43:42 +0200 Subject: [PATCH] clang-format file proposal Run with clang-format [-i] -style=file in the tree. -i does an in-place edit, without it result is written to stdout. --- .clang-format | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .clang-format diff --git a/.clang-format b/.clang-format new file mode 100644 index 000000000..94b628e6e --- /dev/null +++ b/.clang-format @@ -0,0 +1,10 @@ +--- +Language: Cpp +BasedOnStyle: WebKit +AccessModifierOffset: -2 +ConstructorInitializerIndentWidth: 2 +ContinuationIndentWidth: 2 +IndentWidth: 2 +ObjCBlockIndentWidth: 2 + +SortIncludes: false -- 2.40.0