clang-format: remove, it's counter-productive

It seems impossible (or at least, too much work) to make it behave as desired.
This commit is contained in:
Dirk-Jan C. Binnema 2022-05-21 18:02:04 +03:00
parent 4cfe78fd02
commit 1b739ec55e
1 changed files with 0 additions and 46 deletions

View File

@ -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: