From 63247eb68601c7a25baedf546282707346f20dbf Mon Sep 17 00:00:00 2001 From: _xeroxz Date: Mon, 31 May 2021 22:09:58 -0700 Subject: [PATCH] added a different clang format... still playing around with these --- .clang-format | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.clang-format b/.clang-format index c721414..58460fb 100644 --- a/.clang-format +++ b/.clang-format @@ -1,10 +1,20 @@ --- +BasedOnStyle: Chromium BreakBeforeBraces: GNU CompactNamespaces: 'false' +Cpp11BracedListStyle: 'true' FixNamespaceComments: 'true' +Language: Cpp NamespaceIndentation: All ObjCBinPackProtocolList: Always +SpaceInEmptyParentheses: 'false' +SpacesInAngles: 'true' +SpacesInCStyleCastParentheses: 'true' +SpacesInContainerLiterals: 'true' +SpacesInParentheses: 'true' +SpacesInSquareBrackets: 'true' Standard: Cpp11 +TabWidth: '4' UseTab: Always ...