Home | History | Annotate | Line # | Download | only in dist
.clang-format revision 1.1.1.1
      1  1.1  christos ---
      2  1.1  christos Language:        Cpp
      3  1.1  christos # BasedOnStyle:  Google
      4  1.1  christos AccessModifierOffset: -1
      5  1.1  christos AlignAfterOpenBracket: Align
      6  1.1  christos AlignConsecutiveAssignments: false
      7  1.1  christos AlignConsecutiveDeclarations: false
      8  1.1  christos AlignEscapedNewlines: Left
      9  1.1  christos AlignOperands:   true
     10  1.1  christos AlignTrailingComments: true
     11  1.1  christos AllowAllParametersOfDeclarationOnNextLine: true
     12  1.1  christos AllowShortBlocksOnASingleLine: false
     13  1.1  christos AllowShortCaseLabelsOnASingleLine: false
     14  1.1  christos AllowShortFunctionsOnASingleLine: All
     15  1.1  christos AllowShortIfStatementsOnASingleLine: true
     16  1.1  christos AllowShortLoopsOnASingleLine: true
     17  1.1  christos AlwaysBreakAfterDefinitionReturnType: None
     18  1.1  christos AlwaysBreakAfterReturnType: None
     19  1.1  christos AlwaysBreakBeforeMultilineStrings: true
     20  1.1  christos AlwaysBreakTemplateDeclarations: true
     21  1.1  christos BinPackArguments: true
     22  1.1  christos BinPackParameters: true
     23  1.1  christos BraceWrapping:   
     24  1.1  christos   AfterClass:      false
     25  1.1  christos   AfterControlStatement: false
     26  1.1  christos   AfterEnum:       false
     27  1.1  christos   AfterFunction:   false
     28  1.1  christos   AfterNamespace:  false
     29  1.1  christos   AfterObjCDeclaration: false
     30  1.1  christos   AfterStruct:     false
     31  1.1  christos   AfterUnion:      false
     32  1.1  christos   AfterExternBlock: false
     33  1.1  christos   BeforeCatch:     false
     34  1.1  christos   BeforeElse:      false
     35  1.1  christos   IndentBraces:    false
     36  1.1  christos   SplitEmptyFunction: true
     37  1.1  christos   SplitEmptyRecord: true
     38  1.1  christos   SplitEmptyNamespace: true
     39  1.1  christos BreakBeforeBinaryOperators: None
     40  1.1  christos BreakBeforeBraces: Attach
     41  1.1  christos BreakBeforeInheritanceComma: false
     42  1.1  christos BreakInheritanceList: BeforeColon
     43  1.1  christos BreakBeforeTernaryOperators: true
     44  1.1  christos BreakConstructorInitializersBeforeComma: false
     45  1.1  christos BreakConstructorInitializers: BeforeColon
     46  1.1  christos BreakAfterJavaFieldAnnotations: false
     47  1.1  christos BreakStringLiterals: true
     48  1.1  christos ColumnLimit:     80
     49  1.1  christos CommentPragmas:  '^ IWYU pragma:'
     50  1.1  christos CompactNamespaces: false
     51  1.1  christos ConstructorInitializerAllOnOneLineOrOnePerLine: true
     52  1.1  christos ConstructorInitializerIndentWidth: 4
     53  1.1  christos ContinuationIndentWidth: 4
     54  1.1  christos Cpp11BracedListStyle: true
     55  1.1  christos DerivePointerAlignment: true
     56  1.1  christos DisableFormat:   false
     57  1.1  christos ExperimentalAutoDetectBinPacking: false
     58  1.1  christos FixNamespaceComments: true
     59  1.1  christos ForEachMacros:   
     60  1.1  christos   - foreach
     61  1.1  christos   - Q_FOREACH
     62  1.1  christos   - BOOST_FOREACH
     63  1.1  christos IncludeBlocks:   Preserve
     64  1.1  christos IncludeCategories: 
     65  1.1  christos   - Regex:           '^<ext/.*\.h>'
     66  1.1  christos     Priority:        2
     67  1.1  christos   - Regex:           '^<.*\.h>'
     68  1.1  christos     Priority:        1
     69  1.1  christos   - Regex:           '^<.*'
     70  1.1  christos     Priority:        2
     71  1.1  christos   - Regex:           '.*'
     72  1.1  christos     Priority:        3
     73  1.1  christos IncludeIsMainRegex: '([-_](test|unittest))?$'
     74  1.1  christos IndentCaseLabels: true
     75  1.1  christos IndentPPDirectives: None
     76  1.1  christos IndentWidth:     2
     77  1.1  christos IndentWrappedFunctionNames: false
     78  1.1  christos JavaScriptQuotes: Leave
     79  1.1  christos JavaScriptWrapImports: true
     80  1.1  christos KeepEmptyLinesAtTheStartOfBlocks: false
     81  1.1  christos MacroBlockBegin: ''
     82  1.1  christos MacroBlockEnd:   ''
     83  1.1  christos MaxEmptyLinesToKeep: 1
     84  1.1  christos NamespaceIndentation: None
     85  1.1  christos ObjCBinPackProtocolList: Never
     86  1.1  christos ObjCBlockIndentWidth: 2
     87  1.1  christos ObjCSpaceAfterProperty: false
     88  1.1  christos ObjCSpaceBeforeProtocolList: true
     89  1.1  christos PenaltyBreakAssignment: 2
     90  1.1  christos PenaltyBreakBeforeFirstCallParameter: 1
     91  1.1  christos PenaltyBreakComment: 300
     92  1.1  christos PenaltyBreakFirstLessLess: 120
     93  1.1  christos PenaltyBreakString: 1000
     94  1.1  christos PenaltyBreakTemplateDeclaration: 10
     95  1.1  christos PenaltyExcessCharacter: 1000000
     96  1.1  christos PenaltyReturnTypeOnItsOwnLine: 200
     97  1.1  christos PointerAlignment: Left
     98  1.1  christos RawStringFormats: 
     99  1.1  christos   - Language:        Cpp
    100  1.1  christos     Delimiters:      
    101  1.1  christos       - cc
    102  1.1  christos       - CC
    103  1.1  christos       - cpp
    104  1.1  christos       - Cpp
    105  1.1  christos       - CPP
    106  1.1  christos       - 'c++'
    107  1.1  christos       - 'C++'
    108  1.1  christos     CanonicalDelimiter: ''
    109  1.1  christos     BasedOnStyle:    google
    110  1.1  christos   - Language:        TextProto
    111  1.1  christos     Delimiters:      
    112  1.1  christos       - pb
    113  1.1  christos       - PB
    114  1.1  christos       - proto
    115  1.1  christos       - PROTO
    116  1.1  christos     EnclosingFunctions: 
    117  1.1  christos       - EqualsProto
    118  1.1  christos       - EquivToProto
    119  1.1  christos       - PARSE_PARTIAL_TEXT_PROTO
    120  1.1  christos       - PARSE_TEST_PROTO
    121  1.1  christos       - PARSE_TEXT_PROTO
    122  1.1  christos       - ParseTextOrDie
    123  1.1  christos       - ParseTextProtoOrDie
    124  1.1  christos     CanonicalDelimiter: ''
    125  1.1  christos     BasedOnStyle:    google
    126  1.1  christos ReflowComments:  true
    127  1.1  christos SortIncludes:    true
    128  1.1  christos SortUsingDeclarations: true
    129  1.1  christos SpaceAfterCStyleCast: false
    130  1.1  christos SpaceAfterTemplateKeyword: true
    131  1.1  christos SpaceBeforeAssignmentOperators: true
    132  1.1  christos SpaceBeforeCpp11BracedList: false
    133  1.1  christos SpaceBeforeCtorInitializerColon: true
    134  1.1  christos SpaceBeforeInheritanceColon: true
    135  1.1  christos SpaceBeforeParens: ControlStatements
    136  1.1  christos SpaceBeforeRangeBasedForLoopColon: true
    137  1.1  christos SpaceInEmptyParentheses: false
    138  1.1  christos SpacesBeforeTrailingComments: 2
    139  1.1  christos SpacesInAngles:  false
    140  1.1  christos SpacesInContainerLiterals: true
    141  1.1  christos SpacesInCStyleCastParentheses: false
    142  1.1  christos SpacesInParentheses: false
    143  1.1  christos SpacesInSquareBrackets: false
    144  1.1  christos Standard:        Auto
    145  1.1  christos StatementMacros: 
    146  1.1  christos   - Q_UNUSED
    147  1.1  christos   - QT_REQUIRE_VERSION
    148  1.1  christos TabWidth:        8
    149  1.1  christos UseTab:          Never
    150  1.1  christos ...
    151  1.1  christos 
    152