gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

.clang-format (828B)


      1 ---
      2 Language: Cpp
      3 BasedOnStyle: LLVM
      4 AccessModifierOffset: -4
      5 AlignOperands: false
      6 AlignTrailingComments: false
      7 AlwaysBreakTemplateDeclarations: No
      8 BraceWrapping: 
      9   AfterCaseLabel: true
     10   AfterClass: true
     11   AfterControlStatement: true
     12   AfterEnum: true
     13   AfterFunction: true
     14   AfterNamespace: true
     15   AfterStruct: true
     16   AfterUnion: true
     17   AfterExternBlock: false
     18   BeforeCatch: true
     19   BeforeElse: true
     20   SplitEmptyFunction: true
     21   SplitEmptyRecord: true
     22   SplitEmptyNamespace: true
     23 BreakBeforeBraces: Custom
     24 BreakConstructorInitializers: AfterColon
     25 ColumnLimit: 120
     26 IncludeCategories: 
     27   - Regex: '^<.*'
     28     Priority: 1
     29   - Regex: '^".*'
     30     Priority: 2
     31   - Regex: '.*'
     32     Priority: 3
     33 IncludeIsMainRegex: '([-_](test|unittest))?$'
     34 IndentWidth: 4
     35 MaxEmptyLinesToKeep: 2
     36 NamespaceIndentation: All
     37 TabWidth: 4
     38 UseTab: Always
     39 ...