comparison .clang-format @ 9:5c0397762b53

INCOMPLETE: megacommit :)
author Paper <mrpapersonic@gmail.com>
date Sun, 10 Sep 2023 03:59:16 -0400
parents
children cde8f67a7c7d
comparison
equal deleted inserted replaced
8:b1f73678ef61 9:5c0397762b53
1 ---
2 BasedOnStyle: LLVM
3 IndentWidth: 4
4 TabWidth: 4
5 UseTab: Always
6 PointerAlignment: Left
7 IndentCaseLabels: true
8 BreakBeforeBraces: Attach
9 BreakStringLiterals: true
10 AllowShortIfStatementsOnASingleLine: false
11 ColumnLimit: 120
12 AlignAfterOpenBracket: Align
13 IndentAccessModifiers: true
14 AccessModifierOffset: 4
15 AlignArrayOfStructures: Left
16 AlignConsecutiveMacros:
17 Enabled: true
18 AcrossEmptyLines: true
19 AcrossComments: false
20 AllowShortBlocksOnASingleLine: Empty
21 AllowShortEnumsOnASingleLine: false
22 AllowShortFunctionsOnASingleLine: InlineOnly
23 AllowShortCaseLabelsOnASingleLine: true
24
25 ---
26 Language: Cpp
27 Standard: Cpp11