• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1---
2Language:        Cpp
3AccessModifierOffset: -4
4AlignAfterOpenBracket: DontAlign
5AlignConsecutiveAssignments: false
6AlignConsecutiveDeclarations: false
7AlignEscapedNewlines: Left
8AlignOperands: true
9AlignTrailingComments: true
10AllowAllParametersOfDeclarationOnNextLine: false
11AllowShortBlocksOnASingleLine: false
12AllowShortCaseLabelsOnASingleLine: false
13AllowShortFunctionsOnASingleLine: Empty
14AllowShortIfStatementsOnASingleLine: Never
15AllowShortLoopsOnASingleLine: false
16AlwaysBreakAfterReturnType: None
17AlwaysBreakBeforeMultilineStrings: false
18AlwaysBreakTemplateDeclarations: Yes
19BinPackArguments: true
20BinPackParameters: true
21BreakBeforeBraces: Custom
22BraceWrapping:
23  AfterClass:      false
24  AfterControlStatement: false
25  AfterEnum:       false
26  AfterFunction:   true
27  AfterNamespace:  false
28  AfterObjCDeclaration: false
29  AfterStruct:     false
30  AfterUnion:      false
31  AfterExternBlock: false
32  BeforeCatch:     false
33  BeforeElse:      false
34  IndentBraces:    false
35  SplitEmptyFunction: false
36  SplitEmptyRecord: false
37  SplitEmptyNamespace: false
38BreakBeforeBinaryOperators: None
39BreakBeforeInheritanceComma: false
40BreakBeforeTernaryOperators: true
41BreakConstructorInitializers: BeforeColon
42BreakInheritanceList: BeforeColon
43BreakStringLiterals: true
44BreakAfterJavaFieldAnnotations: true
45ColumnLimit: 120
46CommentPragmas:  '^ IWYU pragma:'
47QualifierAlignment: Leave
48ReflowComments: false
49PenaltyBreakComment: 1000000
50CompactNamespaces: false
51ConstructorInitializerAllOnOneLineOrOnePerLine: false
52ConstructorInitializerIndentWidth: 4
53ContinuationIndentWidth: 4
54Cpp11BracedListStyle: false
55DerivePointerAlignment: false
56DisableFormat:   false
57FixNamespaceComments: true
58ForEachMacros:
59  - foreach
60  - Q_FOREACH
61  - BOOST_FOREACH
62IncludeBlocks: Regroup
63IncludeCategories:
64  - Regex:           '^"(base|core|elements|rendering|adapter|dsl|frameworks|resource|accessibility|bridge)/'
65    Priority:        3
66  - Regex:           '<*>'
67    Priority:        1
68  - Regex:           '.*'
69    Priority:        2
70IndentCaseLabels: true
71IndentPPDirectives: None
72IndentWidth: 4
73IndentWrappedFunctionNames: false
74JavaScriptQuotes: Leave
75JavaScriptWrapImports: true
76KeepEmptyLinesAtTheStartOfBlocks: false
77MacroBlockBegin: ''
78MacroBlockEnd:   ''
79MaxEmptyLinesToKeep: 1
80NamespaceIndentation: None
81PenaltyBreakAssignment: 2
82PenaltyBreakBeforeFirstCallParameter: 39
83PenaltyBreakComment: 300
84PenaltyBreakFirstLessLess: 120
85PenaltyBreakString: 1000
86PenaltyExcessCharacter: 1000000
87PenaltyReturnTypeOnItsOwnLine: 80
88PointerAlignment: Left
89ReflowComments: true
90SortIncludes: true
91SortUsingDeclarations: true
92SpaceAfterCStyleCast: false
93SpaceAfterTemplateKeyword: false
94SpaceBeforeAssignmentOperators: true
95SpaceBeforeCpp11BracedList: true
96SpaceBeforeCtorInitializerColon: true
97SpaceBeforeParens: ControlStatements
98SpaceBeforeRangeBasedForLoopColon: true
99SpaceInEmptyParentheses: false
100SpacesBeforeTrailingComments: 1
101SpacesInAngles:  false
102SpacesInCStyleCastParentheses: false
103SpacesInContainerLiterals: true
104SpacesInParentheses: false
105SpacesInSquareBrackets: false
106Standard:        Cpp11
107TabWidth:        4
108UseTab:          Never
109...
110