• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1---
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
48