blob: d91cf89aacbe0d84da221e901e9fcc4ba338eca2 [file] [log] [blame]
James Zerne96c20b2016-07-14 15:18:30 -07001---
2Language: Cpp
3# BasedOnStyle: Google
James Zern964a7172016-09-07 20:56:01 -07004# Generated with clang-format 3.8.1
James Zerne96c20b2016-07-14 15:18:30 -07005AccessModifierOffset: -1
James Zern964a7172016-09-07 20:56:01 -07006AlignAfterOpenBracket: Align
James Zerne96c20b2016-07-14 15:18:30 -07007AlignConsecutiveAssignments: false
James Zern964a7172016-09-07 20:56:01 -07008AlignConsecutiveDeclarations: false
James Zerne96c20b2016-07-14 15:18:30 -07009AlignEscapedNewlinesLeft: true
10AlignOperands: true
11AlignTrailingComments: true
12AllowAllParametersOfDeclarationOnNextLine: true
13AllowShortBlocksOnASingleLine: false
14AllowShortCaseLabelsOnASingleLine: true
15AllowShortFunctionsOnASingleLine: All
16AllowShortIfStatementsOnASingleLine: true
17AllowShortLoopsOnASingleLine: true
18AlwaysBreakAfterDefinitionReturnType: None
James Zern964a7172016-09-07 20:56:01 -070019AlwaysBreakAfterReturnType: None
James Zerne96c20b2016-07-14 15:18:30 -070020AlwaysBreakBeforeMultilineStrings: true
21AlwaysBreakTemplateDeclarations: true
22BinPackArguments: true
23BinPackParameters: true
James Zern964a7172016-09-07 20:56:01 -070024BraceWrapping:
25 AfterClass: false
26 AfterControlStatement: false
27 AfterEnum: false
28 AfterFunction: false
29 AfterNamespace: false
30 AfterObjCDeclaration: false
31 AfterStruct: false
32 AfterUnion: false
33 BeforeCatch: false
34 BeforeElse: false
35 IndentBraces: false
James Zerne96c20b2016-07-14 15:18:30 -070036BreakBeforeBinaryOperators: None
37BreakBeforeBraces: Attach
38BreakBeforeTernaryOperators: true
39BreakConstructorInitializersBeforeComma: false
40ColumnLimit: 80
41CommentPragmas: '^ IWYU pragma:'
42ConstructorInitializerAllOnOneLineOrOnePerLine: false
43ConstructorInitializerIndentWidth: 4
44ContinuationIndentWidth: 4
45Cpp11BracedListStyle: false
James Zern725f7f92016-07-26 16:34:54 -070046DerivePointerAlignment: false
James Zerne96c20b2016-07-14 15:18:30 -070047DisableFormat: false
48ExperimentalAutoDetectBinPacking: false
49ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ]
James Zern964a7172016-09-07 20:56:01 -070050IncludeCategories:
51 - Regex: '^<.*\.h>'
52 Priority: 1
53 - Regex: '^<.*'
54 Priority: 2
55 - Regex: '.*'
56 Priority: 3
James Zerne96c20b2016-07-14 15:18:30 -070057IndentCaseLabels: true
58IndentWidth: 2
59IndentWrappedFunctionNames: false
60KeepEmptyLinesAtTheStartOfBlocks: false
61MacroBlockBegin: ''
62MacroBlockEnd: ''
63MaxEmptyLinesToKeep: 1
64NamespaceIndentation: None
65ObjCBlockIndentWidth: 2
66ObjCSpaceAfterProperty: false
67ObjCSpaceBeforeProtocolList: false
68PenaltyBreakBeforeFirstCallParameter: 1
69PenaltyBreakComment: 300
70PenaltyBreakFirstLessLess: 120
71PenaltyBreakString: 1000
72PenaltyExcessCharacter: 1000000
73PenaltyReturnTypeOnItsOwnLine: 200
74PointerAlignment: Right
James Zern964a7172016-09-07 20:56:01 -070075ReflowComments: true
76SortIncludes: false
James Zerne96c20b2016-07-14 15:18:30 -070077SpaceAfterCStyleCast: false
78SpaceBeforeAssignmentOperators: true
79SpaceBeforeParens: ControlStatements
80SpaceInEmptyParentheses: false
81SpacesBeforeTrailingComments: 2
82SpacesInAngles: false
83SpacesInContainerLiterals: true
84SpacesInCStyleCastParentheses: false
85SpacesInParentheses: false
86SpacesInSquareBrackets: false
87Standard: Auto
88TabWidth: 8
89UseTab: Never
90...
91