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