AnalogTapeModel

Physical modelling signal processing for analog tape recording
Log | Files | Refs | Submodules | README | LICENSE

.clang-format (2134B)


      1 ---
      2 AccessModifierOffset: -4
      3 AlignAfterOpenBracket: Align
      4 AlignConsecutiveAssignments: false
      5 AlignConsecutiveDeclarations: false
      6 AlignEscapedNewlines: Left
      7 AlignOperands: Align
      8 AlignTrailingComments: false
      9 AllowAllParametersOfDeclarationOnNextLine: false
     10 AllowShortBlocksOnASingleLine: Never
     11 AllowShortCaseLabelsOnASingleLine: false
     12 AllowShortFunctionsOnASingleLine: All
     13 AllowShortIfStatementsOnASingleLine: Never
     14 AllowShortLoopsOnASingleLine: false
     15 AlwaysBreakAfterDefinitionReturnType: None
     16 AlwaysBreakAfterReturnType: None
     17 AlwaysBreakBeforeMultilineStrings: false
     18 AlwaysBreakTemplateDeclarations: Yes
     19 BinPackArguments: false
     20 BinPackParameters: false
     21 BreakAfterJavaFieldAnnotations: false
     22 BreakBeforeBinaryOperators: NonAssignment
     23 BreakBeforeBraces: Allman
     24 BreakBeforeTernaryOperators: true
     25 BreakConstructorInitializersBeforeComma: false
     26 BreakStringLiterals: false
     27 ColumnLimit: 0
     28 ConstructorInitializerAllOnOneLineOrOnePerLine: true
     29 ConstructorInitializerIndentWidth: 4
     30 ContinuationIndentWidth: 4
     31 Cpp11BracedListStyle: false
     32 DerivePointerAlignment: false
     33 DisableFormat: false
     34 ExperimentalAutoDetectBinPacking: false
     35 ForEachMacros: ['forEachXmlChildElement']
     36 IndentCaseLabels: true
     37 IndentWidth: 4
     38 IndentWrappedFunctionNames: true
     39 KeepEmptyLinesAtTheStartOfBlocks: false
     40 Language: Cpp
     41 MaxEmptyLinesToKeep: 1
     42 NamespaceIndentation: Inner
     43 PointerAlignment: Left
     44 ReflowComments: false
     45 SortIncludes: true
     46 SpaceAfterCStyleCast: true
     47 SpaceAfterLogicalNot: true
     48 SpaceBeforeAssignmentOperators: true
     49 SpaceBeforeCpp11BracedList: true
     50 SpaceBeforeParens: NonEmptyParentheses
     51 SpaceInEmptyParentheses: false
     52 SpaceBeforeInheritanceColon: true
     53 SpacesInAngles: false
     54 SpacesInCStyleCastParentheses: false
     55 SpacesInContainerLiterals: true
     56 SpacesInParentheses: false
     57 SpacesInSquareBrackets: false
     58 Standard: "c++17"
     59 TabWidth: 4
     60 UseTab: Never
     61 ---
     62 Language: ObjC
     63 BasedOnStyle: Chromium
     64 AlignTrailingComments: true
     65 BreakBeforeBraces: Allman
     66 ColumnLimit: 0
     67 IndentWidth: 4
     68 KeepEmptyLinesAtTheStartOfBlocks: false
     69 ObjCSpaceAfterProperty: true
     70 ObjCSpaceBeforeProtocolList: true
     71 PointerAlignment: Left
     72 SpacesBeforeTrailingComments: 1
     73 TabWidth: 4
     74 UseTab: Never
     75 ...