ReaWwise

REAPER extension
Log | Files | Refs | Submodules

.clang-format (672B)


      1 # Format Style Options - Created with Clang Power Tools
      2 ---
      3 BasedOnStyle: Microsoft
      4 AccessModifierOffset: -4
      5 AlignAfterOpenBracket: DontAlign
      6 AllowShortLambdasOnASingleLine: None
      7 AlwaysBreakTemplateDeclarations: Yes
      8 BinPackParameters: true
      9 BreakBeforeBraces: Allman
     10 BreakInheritanceList: BeforeComma
     11 BreakConstructorInitializers: BeforeComma
     12 ColumnLimit: 0
     13 EmptyLineBeforeAccessModifier: Always
     14 FixNamespaceComments: true
     15 IncludeBlocks: Regroup
     16 IndentCaseLabels: false
     17 KeepEmptyLinesAtTheStartOfBlocks: false
     18 NamespaceIndentation: All
     19 PointerAlignment: Left
     20 ReferenceAlignment: Left
     21 SpacesInAngles: Never
     22 UseTab: AlignWithSpaces
     23 UseCRLF: true
     24 SpaceBeforeParens: Never
     25 ...