summaryrefslogtreecommitdiffstats
path: root/.clang-format
diff options
context:
space:
mode:
Diffstat (limited to '.clang-format')
-rw-r--r--.clang-format13
1 files changed, 11 insertions, 2 deletions
diff --git a/.clang-format b/.clang-format
index 83d50545..5818da3c 100644
--- a/.clang-format
+++ b/.clang-format
@@ -1,7 +1,16 @@
1BasedOnStyle: LLVM 1BasedOnStyle: LLVM
2IndentWidth: 8 2IndentWidth: 4
3TabWidth: 4
3UseTab: Always 4UseTab: Always
4BreakBeforeBraces: Attach 5BreakBeforeBraces: Attach
5AllowShortIfStatementsOnASingleLine: false 6AllowShortIfStatementsOnASingleLine: false
6IndentCaseLabels: false 7IndentCaseLabels: false
7ColumnLimit: 0 8SortIncludes: false
9ColumnLimit: 80
10AlignAfterOpenBracket: DontAlign
11BinPackParameters: false
12BinPackArguments: false
13ContinuationIndentWidth: 8
14AllowAllParametersOfDeclarationOnNextLine: false
15AllowShortLoopsOnASingleLine: true
16ReflowComments: false