1+ ---
2+ Language : Cpp
3+ BasedOnStyle : LLVM
4+ AccessModifierOffset : -4
5+ AlignAfterOpenBracket : Align
6+ AlignConsecutiveAssignments : false
7+ AlignConsecutiveDeclarations : false
8+ AlignEscapedNewlinesLeft : true
9+ AlignOperands : true
10+ AlignTrailingComments : true
11+ AllowAllParametersOfDeclarationOnNextLine : true
12+ AllowShortBlocksOnASingleLine : false
13+ AllowShortCaseLabelsOnASingleLine : false
14+ AllowShortFunctionsOnASingleLine : Inline
15+ AllowShortIfStatementsOnASingleLine : false
16+ AllowShortLoopsOnASingleLine : false
17+ AlwaysBreakAfterDefinitionReturnType : None
18+ AlwaysBreakAfterReturnType : None
19+ AlwaysBreakBeforeMultilineStrings : true
20+ AlwaysBreakTemplateDeclarations : true
21+ BinPackArguments : true
22+ BinPackParameters : true
23+ BraceWrapping :
24+ AfterClass : false
25+ AfterControlStatement : false
26+ AfterEnum : false
27+ AfterFunction : false
28+ AfterNamespace : false
29+ AfterObjCDeclaration : false
30+ AfterStruct : false
31+ AfterUnion : false
32+ BeforeCatch : false
33+ BeforeElse : false
34+ IndentBraces : false
35+ BreakBeforeBinaryOperators : None
36+ BreakBeforeBraces : Attach
37+ BreakBeforeTernaryOperators : true
38+ BreakConstructorInitializersBeforeComma : false
39+ BreakAfterJavaFieldAnnotations : false
40+ BreakStringLiterals : true
41+ ColumnLimit : 80
42+ CommentPragmas : ' ^ IWYU pragma:'
43+ CompactNamespaces : false
44+ ConstructorInitializerAllOnOneLineOrOnePerLine : true
45+ ConstructorInitializerIndentWidth : 8
46+ ContinuationIndentWidth : 8
47+ Cpp11BracedListStyle : true
48+ DerivePointerAlignment : false
49+ DisableFormat : false
50+ ExperimentalAutoDetectBinPacking : false
51+ ForEachMacros : [ foreach, Q_FOREACH, BOOST_FOREACH ]
52+ IncludeCategories :
53+ - Regex : ' ^<.*\.h>'
54+ Priority : 1
55+ - Regex : ' ^<.*'
56+ Priority : 2
57+ - Regex : ' .*'
58+ Priority : 3
59+ IncludeIsMainRegex : ' ([-_](test|unittest))?$'
60+ IndentCaseLabels : true
61+ IndentWidth : 4
62+ IndentWrappedFunctionNames : false
63+ JavaScriptQuotes : Leave
64+ JavaScriptWrapImports : true
65+ KeepEmptyLinesAtTheStartOfBlocks : false
66+ MacroBlockBegin : ' '
67+ MacroBlockEnd : ' '
68+ MaxEmptyLinesToKeep : 1
69+ NamespaceIndentation : None
70+ ObjCBlockIndentWidth : 2
71+ ObjCSpaceAfterProperty : false
72+ ObjCSpaceBeforeProtocolList : false
73+ PenaltyBreakBeforeFirstCallParameter : 1
74+ PenaltyBreakComment : 300
75+ PenaltyBreakFirstLessLess : 120
76+ PenaltyBreakString : 1000
77+ PenaltyExcessCharacter : 1000000
78+ PenaltyReturnTypeOnItsOwnLine : 200
79+ PointerAlignment : Left
80+ ReflowComments : true
81+ SortIncludes : true
82+ SpaceAfterCStyleCast : false
83+ SpaceBeforeAssignmentOperators : true
84+ SpaceBeforeParens : ControlStatements
85+ SpaceInEmptyParentheses : false
86+ SpacesBeforeTrailingComments : 2
87+ SpacesInAngles : false
88+ SpacesInContainerLiterals : true
89+ SpacesInCStyleCastParentheses : false
90+ SpacesInParentheses : false
91+ SpacesInSquareBrackets : false
92+ Standard : Auto
93+ TabWidth : 8
94+ UseTab : Never
95+ ...
0 commit comments