diff options
author | rtk0c <[email protected]> | 2021-05-06 21:56:40 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2021-05-06 21:56:40 -0700 |
commit | 1fd1e4b5f2418e3ac2909658993bfedb615537ec (patch) | |
tree | 6de080d2273890f8a74d7fcd3572bb44f44ac545 /.clang-format | |
parent | 538e804fc9beb83e711a210ffbb6badc15f285d5 (diff) |
Change brace style to on new line, add initial deliveries view when an order entry is selected
Diffstat (limited to '.clang-format')
-rw-r--r-- | .clang-format | 30 |
1 files changed, 14 insertions, 16 deletions
diff --git a/.clang-format b/.clang-format index a7c56d4..c7e0c26 100644 --- a/.clang-format +++ b/.clang-format @@ -25,21 +25,21 @@ AlwaysBreakTemplateDeclarations: MultiLine BinPackArguments: false BinPackParameters: false BraceWrapping: -# AfterClass: true + AfterClass: true AfterControlStatement: MultiLine -# 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 + AfterEnum: true + AfterFunction: true + AfterNamespace: false + AfterObjCDeclaration: false + AfterStruct: true + AfterUnion: true + AfterExternBlock: false + BeforeCatch: false + BeforeElse: false + IndentBraces: false + SplitEmptyFunction: true + SplitEmptyRecord: true + SplitEmptyNamespace: true # BreakBeforeBinaryOperators: None BreakBeforeBraces: Custom # BreakBeforeInheritanceComma: false @@ -65,8 +65,6 @@ Cpp11BracedListStyle: false IncludeCategories: - Regex: '".*"' Priority: 1 - - Regex: '^<glad/glad.h>' - Priority: 1 - Regex: '^<.*\.h>' Priority: 2 - Regex: '^<.*' |