NeuralAmpModelerPlugin

Plugin for Neural Amp Modeler
Log | Files | Refs | Submodules | README | LICENSE

.clang-format (2318B)


      1 AccessModifierOffset: -2
      2 AlignAfterOpenBracket: Align
      3 AlignConsecutiveAssignments: false
      4 AlignConsecutiveDeclarations: false
      5 AlignEscapedNewlines: Right
      6 AlignOperands: true
      7 AlignTrailingComments: false
      8 AllowAllParametersOfDeclarationOnNextLine: false
      9 AllowShortBlocksOnASingleLine: true
     10 AllowShortCaseLabelsOnASingleLine: true
     11 AllowShortFunctionsOnASingleLine: Inline
     12 AllowShortIfStatementsOnASingleLine: false
     13 AllowShortLoopsOnASingleLine: false
     14 AlwaysBreakAfterDefinitionReturnType: None
     15 AlwaysBreakAfterReturnType: None
     16 AlwaysBreakBeforeMultilineStrings: true
     17 AlwaysBreakTemplateDeclarations: true
     18 BinPackArguments: true
     19 BinPackParameters: true
     20 BraceWrapping:
     21   AfterCaseLabel: true
     22   AfterClass: true
     23   AfterControlStatement: true
     24   AfterEnum: true
     25   AfterFunction: true
     26   AfterNamespace: true
     27   AfterStruct: true
     28   AfterUnion: true
     29   BeforeCatch: true
     30   BeforeElse: true
     31   IndentBraces: false
     32   SplitEmptyFunction: true
     33   SplitEmptyRecord: true
     34   SplitEmptyNamespace: true
     35 BreakBeforeBinaryOperators: NonAssignment
     36 BreakBeforeBraces: Custom
     37 BreakBeforeInheritanceComma: false
     38 BreakBeforeTernaryOperators: true
     39 BreakConstructorInitializers: BeforeComma
     40 BreakStringLiterals: true
     41 ColumnLimit: 120
     42 CompactNamespaces: false
     43 ConstructorInitializerAllOnOneLineOrOnePerLine: false
     44 ConstructorInitializerIndentWidth: 0
     45 ContinuationIndentWidth: 2
     46 Cpp11BracedListStyle: true
     47 DerivePointerAlignment: false
     48 FixNamespaceComments: true
     49 IndentCaseLabels: true
     50 IndentPPDirectives: BeforeHash
     51 IndentWidth: 2
     52 IndentWrappedFunctionNames: false
     53 KeepEmptyLinesAtTheStartOfBlocks: true
     54 MaxEmptyLinesToKeep: 2
     55 NamespaceIndentation: None
     56 ObjCBinPackProtocolList: Auto
     57 ObjCBlockIndentWidth: 2
     58 ObjCBreakBeforeNestedBlockParam: true
     59 ObjCSpaceAfterProperty: false
     60 ObjCSpaceBeforeProtocolList: true
     61 PenaltyBreakBeforeFirstCallParameter: 0
     62 PenaltyReturnTypeOnItsOwnLine: 1000
     63 PointerAlignment: Left
     64 ReflowComments: true
     65 SortIncludes: false
     66 SortUsingDeclarations: true
     67 SpaceAfterCStyleCast: false
     68 SpaceAfterTemplateKeyword: true
     69 SpaceBeforeAssignmentOperators: true
     70 SpaceBeforeParens: ControlStatements
     71 SpaceInEmptyParentheses: false
     72 SpacesBeforeTrailingComments: 1
     73 SpacesInAngles: false
     74 SpacesInContainerLiterals: true
     75 SpacesInCStyleCastParentheses: false
     76 SpacesInParentheses: false
     77 SpacesInSquareBrackets: false
     78 Standard: Cpp11
     79 UseTab: Never