1---
2Language: Cpp
3BasedOnStyle: Google
4AccessModifierOffset: -4
5AlignAfterOpenBracket: DontAlign
6AlignArrayOfStructures: None
7AlignConsecutiveMacros: AcrossEmptyLinesAndComments
8AlignOperands: false
9AllowAllArgumentsOnNextLine: true
10AllowShortBlocksOnASingleLine: Never
11AllowShortFunctionsOnASingleLine: Inline
12AllowShortIfStatementsOnASingleLine: Never
13AllowShortLambdasOnASingleLine: None
14AllowShortLoopsOnASingleLine: false
15AlwaysBreakBeforeMultilineStrings: false
16BreakBeforeBraces: Allman
17BreakConstructorInitializers: AfterColon
18BreakInheritanceList: AfterColon
19ColumnLimit: 100
20CommentPragmas: NOLINT:.*
21ConstructorInitializerIndentWidth: 8
22ContinuationIndentWidth: 8
23DerivePointerAlignment: false
24IncludeBlocks: Preserve
25IndentWidth: 4
26MaxEmptyLinesToKeep: 1
27PackConstructorInitializers: Never
28PenaltyBreakBeforeFirstCallParameter: 100000
29PointerAlignment: Left
30SortIncludes: Never
31SpaceBeforeAssignmentOperators: true
32SpaceBeforeCaseColon: false
33SpaceBeforeParens: ControlStatements
34Standard: c++20
35TabWidth: 4
36UseTab: Never
37---
38