blob: dd51247d50a52b0cb596e16e587b4bd30ca34893 [file] [log] [blame]
Derek Sollenberger2eb3b4d2016-01-11 14:41:40 -05001---
2# BasedOnStyle: LLVM
3AccessModifierOffset: -2
4ConstructorInitializerIndentWidth: 4
5AlignEscapedNewlinesLeft: false
6AlignTrailingComments: true
7AllowAllParametersOfDeclarationOnNextLine: true
8AllowShortIfStatementsOnASingleLine: false
9AllowShortLoopsOnASingleLine: false
10AlwaysBreakTemplateDeclarations: false
11AlwaysBreakBeforeMultilineStrings: false
12BreakBeforeBinaryOperators: false
13BreakBeforeTernaryOperators: true
14BreakConstructorInitializersBeforeComma: false
15BinPackParameters: false
16ColumnLimit: 80
17ConstructorInitializerAllOnOneLineOrOnePerLine: false
18DerivePointerBinding: false
19ExperimentalAutoDetectBinPacking: false
20IndentCaseLabels: false
21MaxEmptyLinesToKeep: 1
22NamespaceIndentation: None
23ObjCSpaceBeforeProtocolList: true
24PenaltyBreakBeforeFirstCallParameter: 19
25PenaltyBreakComment: 60
26PenaltyBreakString: 1000
27PenaltyBreakFirstLessLess: 120
28PenaltyExcessCharacter: 1000000
29PenaltyReturnTypeOnItsOwnLine: 60
30PointerBindsToType: true
31SpacesBeforeTrailingComments: 1
32Cpp11BracedListStyle: false
33Standard: Cpp03
34IndentWidth: 2
35TabWidth: 8
36UseTab: Never
37BreakBeforeBraces: Attach
38IndentFunctionDeclarationAfterType: false
39SpacesInParentheses: false
40SpacesInAngles: false
41SpaceInEmptyParentheses: false
42SpacesInCStyleCastParentheses: false
43SpaceAfterControlStatementKeyword: true
44SpaceBeforeAssignmentOperators: true
45ContinuationIndentWidth: 4
46...
47