mu/.clang-format

47 lines
1.3 KiB
Plaintext
Raw Normal View History

---
2022-01-23 09:29:22 +01:00
Language: 'Cpp'
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'
2022-01-23 09:29:22 +01:00
BinPackArguments: 'true'
BinPackParameters: 'true'
2021-10-16 10:44:53 +02:00
BreakBeforeBraces: 'WebKit'
ColumnLimit: '90'
2021-10-21 20:46:28 +02:00
Cpp11BracedListStyle: 'true'
DerivePointerAlignment: 'false'
IndentCaseLabels: 'false'
2021-11-22 20:54:03 +01:00
IndentGotoLabels: 'false'
IndentWidth: '8'
2021-10-21 20:46:28 +02:00
IndentAccessModifiers: 'false'
KeepEmptyLinesAtTheStartOfBlocks: 'false'
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: