links

lynx-like text mode web browser
git clone anongit@rnpnr.xyz:links.git
Log | Files | Refs | Feed | README | LICENSE

.clang-format (977B)


      1 AlignAfterOpenBracket: Align
      2 AlignArrayOfStructures: Left
      3 AlignConsecutiveBitFields:
      4   Enabled: true
      5   AcrossEmptyLines: false
      6   AcrossComments: false
      7 AlignConsecutiveMacros:
      8   Enabled: true
      9   AcrossEmptyLines: false
     10   AcrossComments: false
     11 AlignEscapedNewlines: Right
     12 AlignOperands: Align
     13 AllowShortBlocksOnASingleLine: false
     14 AllowShortCaseLabelsOnASingleLine: false
     15 AllowShortFunctionsOnASingleLine: false
     16 AllowShortIfStatementsOnASingleLine: false
     17 AllowShortLoopsOnASingleLine: false
     18 AlwaysBreakAfterDefinitionReturnType: true
     19 BinPackArguments: true
     20 BinPackParameters: true
     21 BreakBeforeBinaryOperators: NonAssignment
     22 BreakBeforeBraces: Linux
     23 ColumnLimit: 80
     24 Cpp11BracedListStyle: false
     25 ForEachMacros: [foreach, foreachfrom, foreachbackfrom, foreachback]
     26 IndentGotoLabels: false
     27 IndentPPDirectives: BeforeHash
     28 IndentWidth: 8
     29 MaxEmptyLinesToKeep: 1
     30 PointerAlignment: Right
     31 ReflowComments: true
     32 SpaceAfterCStyleCast: false
     33 TabWidth: 8
     34 UseCRLF: false
     35 UseTab: AlignWithSpaces
     36 ...