mu/.clang-format

46 lines
1.3 KiB
Plaintext
Raw Normal View History

---
2021-10-21 20:46:28 +02:00
AccessModifierOffset: -8
AlignAfterOpenBracket: 'Align'
2021-10-16 10:44:53 +02:00
AlignConsecutiveAssignments: 'true'
AlignConsecutiveDeclarations: 'true'
AlignConsecutiveMacros: 'true'
AlignOperands: 'true'
AlignTrailingComments: 'true'
AllowAllArgumentsOnNextLine: 'false'
AllowAllParametersOfDeclarationOnNextLine: 'false'
2021-10-21 20:46:28 +02:00
AllowShortBlocksOnASingleLine: 'Empty'
2021-10-16 10:44:53 +02:00
AllowShortCaseLabelsOnASingleLine: 'true'
AllowShortFunctionsOnASingleLine: 'Inline'
AllowShortIfStatementsOnASingleLine: 'false'
2021-10-21 20:46:28 +02:00
AllowShortLambdasOnASingleLine: 'All'
2021-10-16 10:44:53 +02:00
AlwaysBreakAfterReturnType: 'TopLevelDefinitions'
2021-10-21 20:46:28 +02:00
BraceWrapping:
BeforeLambdaBody: 'false'
BinPackArguments: 'false'
2021-10-16 10:44:53 +02:00
BinPackParameters: 'false'
BreakBeforeBraces: 'WebKit'
ColumnLimit: '100'
2021-10-21 20:46:28 +02:00
Cpp11BracedListStyle: 'true'
DerivePointerAlignment: 'false'
IndentCaseLabels: 'false'
IndentWidth: '8'
2021-10-21 20:46:28 +02:00
IndentAccessModifiers: 'false'
KeepEmptyLinesAtTheStartOfBlocks: 'false'
Language: 'Cpp'
MaxEmptyLinesToKeep: '1'
2021-10-16 10:44:53 +02:00
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: