• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1---
2Language:        Cpp
3AccessModifierOffset: -2
4AlignAfterOpenBracket: Align
5AlignConsecutiveMacros: false
6AlignConsecutiveAssignments: false
7AlignConsecutiveDeclarations: false
8AlignEscapedNewlines: Right
9AlignOperands:   true
10AlignTrailingComments: true
11AllowAllArgumentsOnNextLine: true
12AllowAllConstructorInitializersOnNextLine: true
13AllowAllParametersOfDeclarationOnNextLine: true
14AllowShortBlocksOnASingleLine: false
15AllowShortCaseLabelsOnASingleLine: false
16AllowShortFunctionsOnASingleLine: All
17AllowShortLambdasOnASingleLine: All
18AllowShortIfStatementsOnASingleLine: Never
19AllowShortLoopsOnASingleLine: false
20AlwaysBreakAfterDefinitionReturnType: None
21AlwaysBreakAfterReturnType: None
22AlwaysBreakBeforeMultilineStrings: false
23AlwaysBreakTemplateDeclarations: MultiLine
24BinPackArguments: true
25BinPackParameters: true
26BraceWrapping:
27  AfterCaseLabel:  false
28  AfterClass:      false
29  AfterControlStatement: false
30  AfterEnum:       false
31  AfterFunction:   false
32  AfterNamespace:  false
33  AfterObjCDeclaration: false
34  AfterStruct:     false
35  AfterUnion:      false
36  AfterExternBlock: false
37  BeforeCatch:     false
38  BeforeElse:      false
39  IndentBraces:    false
40  SplitEmptyFunction: true
41  SplitEmptyRecord: true
42  SplitEmptyNamespace: true
43BreakBeforeBinaryOperators: None
44BreakBeforeBraces: Attach
45BreakBeforeInheritanceComma: false
46BreakInheritanceList: BeforeColon
47BreakBeforeTernaryOperators: true
48BreakConstructorInitializersBeforeComma: false
49BreakConstructorInitializers: BeforeColon
50BreakAfterJavaFieldAnnotations: false
51BreakStringLiterals: true
52ColumnLimit:     80
53CommentPragmas:  '^ IWYU pragma:'
54CompactNamespaces: false
55ConstructorInitializerAllOnOneLineOrOnePerLine: true
56ConstructorInitializerIndentWidth: 4
57ContinuationIndentWidth: 4
58Cpp11BracedListStyle: true
59DerivePointerAlignment: false
60DisableFormat:   false
61ExperimentalAutoDetectBinPacking: false
62FixNamespaceComments: true
63ForEachMacros:
64  - foreach
65  - Q_FOREACH
66  - BOOST_FOREACH
67IncludeBlocks:   Preserve
68IncludeCategories:
69  - Regex:           '^"(llvm|llvm-c|clang|clang-c)/'
70    Priority:        2
71  - Regex:           '^(<|"(gtest|isl|json)/)'
72    Priority:        3
73  - Regex:           '.*'
74    Priority:        1
75IncludeIsMainRegex: '$'
76IndentCaseLabels: false
77IndentPPDirectives: AfterHash
78IndentWidth:     2
79IndentWrappedFunctionNames: false
80JavaScriptQuotes: Leave
81JavaScriptWrapImports: true
82KeepEmptyLinesAtTheStartOfBlocks: true
83MacroBlockBegin: ''
84MacroBlockEnd:   ''
85MaxEmptyLinesToKeep: 1
86NamespaceIndentation: None
87ObjCBinPackProtocolList: Auto
88ObjCBlockIndentWidth: 2
89ObjCSpaceAfterProperty: false
90ObjCSpaceBeforeProtocolList: true
91PenaltyBreakAssignment: 2
92PenaltyBreakBeforeFirstCallParameter: 19
93PenaltyBreakComment: 300
94PenaltyBreakFirstLessLess: 120
95PenaltyBreakString: 1000
96PenaltyBreakTemplateDeclaration: 10
97PenaltyExcessCharacter: 1000000
98PenaltyReturnTypeOnItsOwnLine: 60
99PointerAlignment: Right
100ReflowComments:  true
101SortIncludes:    false
102SortUsingDeclarations: true
103SpaceAfterCStyleCast: false
104SpaceAfterLogicalNot: false
105SpaceAfterTemplateKeyword: true
106SpaceBeforeAssignmentOperators: true
107SpaceBeforeCpp11BracedList: false
108SpaceBeforeCtorInitializerColon: true
109SpaceBeforeInheritanceColon: true
110SpaceBeforeParens: ControlStatements
111SpaceBeforeRangeBasedForLoopColon: true
112SpaceInEmptyParentheses: false
113SpacesBeforeTrailingComments: 1
114SpacesInAngles:  false
115SpacesInContainerLiterals: true
116SpacesInCStyleCastParentheses: false
117SpacesInParentheses: false
118SpacesInSquareBrackets: false
119Standard:        Cpp11
120StatementMacros:
121  - Q_UNUSED
122  - QT_REQUIRE_VERSION
123TabWidth:        8
124UseTab:          Never
125...
126
127