From 61327a17bc15ebe29690ec39f39f13efd1a5e61a Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" Date: Tue, 19 Jan 2021 20:39:03 -0800 Subject: [PATCH] Removing .clang-format before git rebase master (where the file was added). --- .clang-format | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 .clang-format diff --git a/.clang-format b/.clang-format deleted file mode 100644 index 8700fca84..000000000 --- a/.clang-format +++ /dev/null @@ -1,21 +0,0 @@ ---- -# See all possible options and defaults with: -# clang-format --style=llvm --dump-config -BasedOnStyle: LLVM -AccessModifierOffset: -4 -AlignConsecutiveAssignments: true -AlwaysBreakTemplateDeclarations: Yes -BinPackArguments: false -BinPackParameters: false -BreakBeforeBinaryOperators: All -BreakConstructorInitializers: BeforeColon -ColumnLimit: 99 -IndentCaseLabels: true -IndentPPDirectives: AfterHash -IndentWidth: 4 -Language: Cpp -SpaceAfterCStyleCast: true -# SpaceInEmptyBlock: true # too new -Standard: Cpp11 -TabWidth: 4 -...