libqaeda

Unnamed repository; edit this file 'description' to name the repository.
Info | Log | Files | Refs | README | LICENSE

.clang-format (532B)


      1 ---
      2 BasedOnStyle: LLVM
      3 AlignAfterOpenBracket: DontAlign
      4 BinPackArguments: true
      5 BinPackParameters: true
      6 BreakBeforeBraces: Mozilla
      7 IndentWidth: 2
      8 ContinuationIndentWidth: 2
      9 AllowAllParametersOfDeclarationOnNextLine: false
     10 AllowAllArgumentsOnNextLine: false
     11 AllowShortBlocksOnASingleLine: 'Never'
     12 AllowShortCaseLabelsOnASingleLine: false
     13 AllowShortFunctionsOnASingleLine: 'None'
     14 AllowShortIfStatementsOnASingleLine: 'false'
     15 AllowShortLoopsOnASingleLine: false
     16 PenaltyBreakAssignment: 10000
     17 PenaltyBreakBeforeFirstCallParameter: 100000