comparison .clang-format @ 413:192da585a0a8 default tip

*: fix formatting the clang-format file was broken andjust using LLVM defaults. now it's fixed and is more in line with what I actually prefer my code to look like -- esp. with regards to tabulators
author Paper <paper@tflc.us>
date Sat, 25 Jul 2026 14:54:32 -0400
parents 963047512d34
children
comparison
equal deleted inserted replaced
412:05aed03e0111 413:192da585a0a8
1 --- 1 ---
2 Language: Cpp
3 Standard: c++17
2 BasedOnStyle: LLVM 4 BasedOnStyle: LLVM
3 UseTab: ForIndentation 5 UseTab: ForContinuationAndIndentation
4 PointerAlignment: Right 6 PointerAlignment: Right
5 ColumnLimit: 120 7 ColumnLimit: 120
6 IndentWidth: 4 8 IndentWidth: 4
7 TabWidth: 4 9 TabWidth: 4
8 PPIndentWidth: 1 10 PPIndentWidth: 1
19 21
20 AlwaysBreakTemplateDeclarations: true 22 AlwaysBreakTemplateDeclarations: true
21 23
22 SpaceAfterTemplateKeyword: false 24 SpaceAfterTemplateKeyword: false
23 25
24 AlignAfterOpenBracket: Align 26 AlignAfterOpenBracket: false
27 ContinuationIndentWidth: 4
28
25 AlignArrayOfStructures: Left 29 AlignArrayOfStructures: Left
26 AlignEscapedNewlines: DontAlign 30 AlignEscapedNewlines: DontAlign
27 AlignConsecutiveMacros: true 31 AlignConsecutiveMacros: true
28 32
29 AllowShortIfStatementsOnASingleLine: false 33 AllowShortIfStatementsOnASingleLine: false
31 AllowShortEnumsOnASingleLine: false 35 AllowShortEnumsOnASingleLine: false
32 AllowShortFunctionsOnASingleLine: InlineOnly 36 AllowShortFunctionsOnASingleLine: InlineOnly
33 AllowShortCaseLabelsOnASingleLine: false 37 AllowShortCaseLabelsOnASingleLine: false
34 38
35 Cpp11BracedListStyle: true 39 Cpp11BracedListStyle: true
36
37 ---
38 Language: Cpp
39 Standard: c++17