Build: add GCC-13, Clang-14, Clang-15, Clang-16, Clang-17
[marnav.git] / .clang-format
blobf1fc4dbc64250dfbb999138f3d6d710b240698f7
1 # clang-format-10
2 ---
3 AccessModifierOffset: '-4'
4 AlignAfterOpenBracket: DontAlign
5 AlignEscapedNewlines: Left
6 AlignOperands: 'false'
7 AlignTrailingComments: 'false'
8 AllowShortFunctionsOnASingleLine: InlineOnly
9 AllowShortLambdasOnASingleLine: All
10 AlwaysBreakTemplateDeclarations: 'Yes'
11 BreakBeforeBinaryOperators: All
12 BreakBeforeBraces: Linux
13 BreakConstructorInitializers: BeforeComma
14 ColumnLimit: '96'
15 Cpp11BracedListStyle: 'true'
16 DerivePointerAlignment: 'false'
17 FixNamespaceComments: 'false'
18 IndentCaseLabels: 'true'
19 IndentWidth: '4'
20 Language: Cpp
21 MaxEmptyLinesToKeep: '1'
22 NamespaceIndentation: None
23 PointerAlignment: Middle
24 ReflowComments: 'false'
25 SortIncludes: 'false'
26 Standard: Cpp11
27 TabWidth: '4'
28 UseTab: Always
29 # TODO:consider UseTab: ForIndentation
30 IndentPPDirectives: BeforeHash
32 ...