From 1b739ec55e21cf1f908822a26e62282dc82e5602 Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Sat, 21 May 2022 18:02:04 +0300 Subject: [PATCH] clang-format: remove, it's counter-productive It seems impossible (or at least, too much work) to make it behave as desired. --- .clang-format | 46 ---------------------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 .clang-format diff --git a/.clang-format b/.clang-format deleted file mode 100644 index 48c84e6d..00000000 --- a/.clang-format +++ /dev/null @@ -1,46 +0,0 @@ ---- -Language: 'Cpp' -AccessModifierOffset: -8 -AlignAfterOpenBracket: 'Align' -AlignConsecutiveAssignments: 'true' -AlignConsecutiveDeclarations: 'true' -AlignConsecutiveMacros: 'true' -AlignOperands: 'true' -AlignTrailingComments: 'true' -AllowAllArgumentsOnNextLine: 'false' -AllowAllParametersOfDeclarationOnNextLine: 'false' -AllowShortBlocksOnASingleLine: 'Empty' -AllowShortCaseLabelsOnASingleLine: 'true' -AllowShortFunctionsOnASingleLine: 'Inline' -AllowShortIfStatementsOnASingleLine: 'false' -AllowShortLambdasOnASingleLine: 'All' -AlwaysBreakAfterReturnType: 'TopLevelDefinitions' -BraceWrapping: -# BeforeLambdaBody: 'false' -BinPackArguments: 'true' -BinPackParameters: 'true' -BreakBeforeBraces: 'WebKit' -ColumnLimit: '90' -Cpp11BracedListStyle: 'true' -DerivePointerAlignment: 'false' -IndentCaseLabels: 'false' -IndentGotoLabels: 'false' -IndentWidth: '8' -IndentAccessModifiers: 'false' -KeepEmptyLinesAtTheStartOfBlocks: 'false' -MaxEmptyLinesToKeep: '1' -PenaltyBreakAssignment: '3' -PenaltyBreakBeforeFirstCallParameter: '15' -PointerAlignment: 'Left' -SortIncludes: 'false' -SpaceAfterCStyleCast: 'false' -SpaceBeforeAssignmentOperators : 'true' -SpaceBeforeParens: 'ControlStatements' -SpaceInEmptyParentheses: 'false' -SpacesInSquareBrackets: 'false' -TabWidth: '8' -UseTab: 'AlignWithSpaces' - -# Local Variables: -# mode: yaml -# End: