1---
2AccessModifierOffset: -4
3AlignEscapedNewlines: Left
4AlignTrailingComments: true
5AllowAllParametersOfDeclarationOnNextLine: true
6# Requires Clang-Format 10+
7# AllowShortBlocksOnASingleLine: Empty
8AllowShortFunctionsOnASingleLine: None
9AllowShortIfStatementsOnASingleLine: Always
10AllowShortLoopsOnASingleLine: false
11AlwaysBreakBeforeMultilineStrings: false
12AlwaysBreakTemplateDeclarations: Yes
13BinPackParameters: true
14BreakBeforeBinaryOperators: None
15BreakBeforeBraces: Attach
16BreakBeforeTernaryOperators: false
17BreakConstructorInitializersBeforeComma: false
18ColumnLimit: 0
19ConstructorInitializerAllOnOneLineOrOnePerLine: false
20ConstructorInitializerIndentWidth: 4
21ContinuationIndentWidth: 4
22Cpp11BracedListStyle: true
23DerivePointerAlignment: false
24ExperimentalAutoDetectBinPacking: false
25IndentCaseLabels: false
26IndentWrappedFunctionNames: false
27IndentWidth: 4
28MaxEmptyLinesToKeep: 1
29NamespaceIndentation: None
30ObjCSpaceBeforeProtocolList: true
31PenaltyBreakBeforeFirstCallParameter: 19
32PenaltyBreakComment: 60
33PenaltyBreakFirstLessLess: 120
34PenaltyBreakString: 1000
35PenaltyExcessCharacter: 1000000
36PenaltyReturnTypeOnItsOwnLine: 60
37PointerAlignment: Right
38SpaceBeforeParens: ControlStatements
39SpaceAfterCStyleCast: false
40SpaceAfterTemplateKeyword: false
41SpaceBeforeAssignmentOperators: true
42SpaceInEmptyParentheses: false
43SpacesBeforeTrailingComments: 2
44SpacesInAngles: false
45SpacesInCStyleCastParentheses: false
46SpacesInParentheses: false
47Standard: Cpp11
48TabWidth: 8
49UseTab: Never
50
51...
52