Mercurial > minori
annotate .clang-format @ 224:7ca56c4ac0bc
about: don't abuse QCoreApplication:tr
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Mon, 08 Jan 2024 17:05:08 -0500 |
parents | bc8d2ccff09c |
children | 862d0d8619f6 |
rev | line source |
---|---|
9 | 1 --- |
2 BasedOnStyle: LLVM | |
15 | 3 UseTab: ForIndentation |
4 PointerAlignment: Left | |
5 ColumnLimit: 120 | |
9 | 6 IndentWidth: 4 |
7 TabWidth: 4 | |
15 | 8 AccessModifierOffset: 4 |
9 | |
9 | 10 IndentCaseLabels: true |
15 | 11 IndentAccessModifiers: true |
12 IndentPPDirectives: AfterHash | |
13 | |
9 | 14 BreakBeforeBraces: Attach |
15 BreakStringLiterals: true | |
15 | 16 |
9 | 17 AlignAfterOpenBracket: Align |
18 AlignArrayOfStructures: Left | |
15 | 19 AlignEscapedNewlines: DontAlign |
36 | 20 AlignConsecutiveMacros: true |
15 | 21 |
22 AllowShortIfStatementsOnASingleLine: false | |
9 | 23 AllowShortBlocksOnASingleLine: Empty |
24 AllowShortEnumsOnASingleLine: false | |
25 AllowShortFunctionsOnASingleLine: InlineOnly | |
26 AllowShortCaseLabelsOnASingleLine: true | |
27 | |
77 | 28 Cpp11BracedListStyle: true |
29 | |
9 | 30 --- |
31 Language: Cpp | |
178
bc8d2ccff09c
win32/dark: use existing STL classes for dwmapi
Paper <mrpapersonic@gmail.com>
parents:
83
diff
changeset
|
32 Standard: Cpp17 |