.clang-format (358B)
1 # 2 # .clang-format -- automatic code prettifying 3 # 4 5 BasedOnStyle: LLVM 6 UseTab: ForIndentation 7 IndentWidth: 8 8 TabWidth: 8 9 BreakBeforeBraces: Allman 10 11 AlignConsecutiveDeclarations: false 12 AlignConsecutiveAssignments: false 13 DerivePointerAlignment: false 14 PointerAlignment: Left 15 16 ColumnLimit: 0 17 18 InsertNewlineAtEOF: true 19 KeepEmptyLinesAtEOF: true # clang-format 17 20