aboutsummaryrefslogtreecommitdiffhomepage
path: root/.clang-format
diff options
context:
space:
mode:
authorMango0x45 <thomasvoss@live.com> 2021-02-03 18:12:48 +0100
committerMango0x45 <thomasvoss@live.com> 2021-02-03 18:12:48 +0100
commitadd7c63d4c5a859b1fddab8077b6c94afa8b38fb (patch)
tree65d0f46c80df5c26c17416e7d35ee5b33036bf78 /.clang-format
parentfd2a3e806b73443c47d9d91b788496839f79e290 (diff)
Better time formatting
Diffstat (limited to '.clang-format')
-rw-r--r--.clang-format18
1 files changed, 17 insertions, 1 deletions
diff --git a/.clang-format b/.clang-format
index f7f31ac..b37ca62 100644
--- a/.clang-format
+++ b/.clang-format
@@ -12,8 +12,24 @@ AllowShortIfStatementsOnASingleLine: Never
AllowShortLoopsOnASingleLine: false
BinPackArguments: true
BinPackParameters: true
+BraceWrapping:
+ AfterClass: false
+ AfterControlStatement: false
+ AfterEnum: false
+ AfterFunction: true
+ AfterNamespace: true
+ AfterObjCDeclaration: false
+ AfterStruct: false
+ AfterUnion: false
+ AfterExternBlock: false
+ BeforeCatch: false
+ BeforeElse: false
+ IndentBraces: false
+ SplitEmptyFunction: true
+ SplitEmptyRecord: true
+ SplitEmptyNamespace: true
BreakBeforeBinaryOperators: NonAssignment
-BreakBeforeBraces: Attach
+BreakBeforeBraces: Custom
BreakBeforeTernaryOperators: true
ColumnLimit: 100
ContinuationIndentWidth: 4