blob: 38804f78c4ebef7eb30e3d1a44195bd894fde905 [file] [log] [blame]
Craig Tillerb5dcec52015-01-13 11:13:42 -08001---
2Language: Cpp
3# BasedOnStyle: Google
4AccessModifierOffset: -1
5AlignAfterOpenBracket: true
6AlignEscapedNewlinesLeft: true
7AlignOperands: true
8AlignTrailingComments: true
9AllowAllParametersOfDeclarationOnNextLine: true
10AllowShortBlocksOnASingleLine: false
11AllowShortCaseLabelsOnASingleLine: false
12AllowShortIfStatementsOnASingleLine: true
13AllowShortLoopsOnASingleLine: true
14AllowShortFunctionsOnASingleLine: All
15AlwaysBreakAfterDefinitionReturnType: false
16AlwaysBreakTemplateDeclarations: true
17AlwaysBreakBeforeMultilineStrings: true
18BreakBeforeBinaryOperators: None
19BreakBeforeTernaryOperators: true
20BreakConstructorInitializersBeforeComma: false
21BinPackParameters: true
22BinPackArguments: true
23ColumnLimit: 80
24ConstructorInitializerAllOnOneLineOrOnePerLine: true
25ConstructorInitializerIndentWidth: 4
26DerivePointerAlignment: true
27ExperimentalAutoDetectBinPacking: false
28IndentCaseLabels: true
29IndentWrappedFunctionNames: false
30IndentFunctionDeclarationAfterType: false
31MaxEmptyLinesToKeep: 1
32KeepEmptyLinesAtTheStartOfBlocks: false
33NamespaceIndentation: None
34ObjCBlockIndentWidth: 2
35ObjCSpaceAfterProperty: false
36ObjCSpaceBeforeProtocolList: false
37PenaltyBreakBeforeFirstCallParameter: 1
38PenaltyBreakComment: 300
39PenaltyBreakString: 1000
40PenaltyBreakFirstLessLess: 120
41PenaltyExcessCharacter: 1000000
42PenaltyReturnTypeOnItsOwnLine: 200
43PointerAlignment: Left
44SpacesBeforeTrailingComments: 2
45Cpp11BracedListStyle: true
46Standard: Auto
47IndentWidth: 2
48TabWidth: 8
49UseTab: Never
50BreakBeforeBraces: Attach
51SpacesInParentheses: false
52SpacesInSquareBrackets: false
53SpacesInAngles: false
54SpaceInEmptyParentheses: false
55SpacesInCStyleCastParentheses: false
56SpaceAfterCStyleCast: false
57SpacesInContainerLiterals: true
58SpaceBeforeAssignmentOperators: true
59ContinuationIndentWidth: 4
60CommentPragmas: '^ IWYU pragma:'
61ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ]
62SpaceBeforeParens: ControlStatements
63DisableFormat: false
64...
65