blob: bbc1bb1c4983ce15778efce8cb7715c0a2eee75d [file] [log] [blame]
James Feist3cb5fec2018-01-23 14:41:51 -08001---
2Language: Cpp
3# BasedOnStyle: LLVM
4AccessModifierOffset: -2
5AlignAfterOpenBracket: Align
6AlignConsecutiveAssignments: false
7AlignConsecutiveDeclarations: false
8AlignEscapedNewlinesLeft: false
9AlignOperands: true
10AlignTrailingComments: true
11AllowAllParametersOfDeclarationOnNextLine: true
12AllowShortBlocksOnASingleLine: false
13AllowShortCaseLabelsOnASingleLine: false
14AllowShortFunctionsOnASingleLine: None
15AllowShortIfStatementsOnASingleLine: false
16AllowShortLoopsOnASingleLine: false
17AlwaysBreakAfterDefinitionReturnType: None
18AlwaysBreakAfterReturnType: None
19AlwaysBreakBeforeMultilineStrings: false
20AlwaysBreakTemplateDeclarations: false
21BinPackArguments: true
22BinPackParameters: true
23BraceWrapping:
24 AfterClass: true
25 AfterControlStatement: true
26 AfterEnum: true
27 AfterFunction: true
James Feistc72f8c22018-04-30 13:05:11 -070028 AfterNamespace: true
James Feist3cb5fec2018-01-23 14:41:51 -080029 AfterObjCDeclaration: true
30 AfterStruct: true
31 AfterUnion: true
32 BeforeCatch: true
33 BeforeElse: true
34 IndentBraces: false
35BreakBeforeBinaryOperators: None
36BreakBeforeBraces: Custom
37BreakBeforeTernaryOperators: true
James Feistc72f8c22018-04-30 13:05:11 -070038BreakConstructorInitializers: AfterColon
James Feist3cb5fec2018-01-23 14:41:51 -080039ColumnLimit: 80
40CommentPragmas: '^ IWYU pragma:'
41ConstructorInitializerAllOnOneLineOrOnePerLine: false
42ConstructorInitializerIndentWidth: 4
43ContinuationIndentWidth: 4
44Cpp11BracedListStyle: true
James Feistc72f8c22018-04-30 13:05:11 -070045DerivePointerAlignment: true
46PointerAlignment: Left
James Feist3cb5fec2018-01-23 14:41:51 -080047DisableFormat: false
48ExperimentalAutoDetectBinPacking: false
James Feistc72f8c22018-04-30 13:05:11 -070049FixNamespaceComments: true
James Feist3cb5fec2018-01-23 14:41:51 -080050ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ]
James Feistc72f8c22018-04-30 13:05:11 -070051IndentCaseLabels: true
James Feist3cb5fec2018-01-23 14:41:51 -080052IndentWidth: 4
James Feistc72f8c22018-04-30 13:05:11 -070053IndentWrappedFunctionNames: true
James Feist3cb5fec2018-01-23 14:41:51 -080054KeepEmptyLinesAtTheStartOfBlocks: true
55MacroBlockBegin: ''
56MacroBlockEnd: ''
57MaxEmptyLinesToKeep: 1
58NamespaceIndentation: None
59ObjCBlockIndentWidth: 2
60ObjCSpaceAfterProperty: false
61ObjCSpaceBeforeProtocolList: true
62PenaltyBreakBeforeFirstCallParameter: 19
63PenaltyBreakComment: 300
64PenaltyBreakFirstLessLess: 120
65PenaltyBreakString: 1000
66PenaltyExcessCharacter: 1000000
67PenaltyReturnTypeOnItsOwnLine: 60
68PointerAlignment: Right
69ReflowComments: true
70SortIncludes: false
71SpaceAfterCStyleCast: false
72SpaceBeforeAssignmentOperators: true
73SpaceBeforeParens: ControlStatements
74SpaceInEmptyParentheses: false
75SpacesBeforeTrailingComments: 1
76SpacesInAngles: false
77SpacesInContainerLiterals: true
78SpacesInCStyleCastParentheses: false
79SpacesInParentheses: false
80SpacesInSquareBrackets: false
81Standard: Cpp11
82TabWidth: 4
83UseTab: Never
James Feist9eb0b582018-04-27 12:15:46 -070084...
85