aboutsummaryrefslogtreecommitdiff
path: root/.clang-format
blob: 93baaea524ddb273618171675d910d23175a8ddf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
---
Language: Cpp
UseCRLF: false
Standard: c++20
UseTab: Always
TabWidth: 4
IndentWidth: 4
ColumnLimit: 0
SpacesInSquareBrackets: false
SpacesInParentheses: false
SpacesInCStyleCastParentheses: false
SpacesInContainerLiterals: false
SpacesInConditionalStatement: false
SpacesInAngles: false
SpaceInEmptyParentheses: false
SpaceInEmptyBlock: false
SpaceBeforeSquareBrackets: false
SpaceBeforeRangeBasedForLoopColon: true
SpaceBeforeParens: ControlStatements
SpaceBeforeInheritanceColon: true
SpaceBeforeCtorInitializerColon: true
SpaceBeforeCpp11BracedList: true
SpaceBeforeAssignmentOperators: true
SpaceAfterTemplateKeyword: false
SpaceAfterLogicalNot: false
PointerAlignment: Left
PackConstructorInitializers: CurrentLine
NamespaceIndentation: All
LambdaBodyIndentation: Signature
IndentExternBlock: Indent
IndentCaseLabels: true
IndentAccessModifiers: false
IncludeBlocks: Regroup
FixNamespaceComments: false
EmptyLineBeforeAccessModifier: LogicalBlock
Cpp11BracedListStyle: false
CompactNamespaces: false
BreakConstructorInitializers: BeforeColon
BreakBeforeBraces: Attach
AlwaysBreakTemplateDeclarations: Yes
AllowShortLambdasOnASingleLine: All
AllowShortIfStatementsOnASingleLine: AllIfsAndElse
AllowShortEnumsOnASingleLine: true
AllowShortCaseLabelsOnASingleLine: true
AlignTrailingComments: true
AlignEscapedNewlines: Left
AlignAfterOpenBracket: DontAlign
AccessModifierOffset: -4
IncludeCategories:
  - Regex: <[[:alnum:]_]+>
    Priority: 1
  - Regex: <[[:alnum:]_]+[.]h>
    Priority: 2
  - Regex: ^<openvic-dataloader/
    Priority: 3
  - Regex: ^<lexy/
    Priority: 4
  - Regex: ^<dryad/
    Priority: 5
  - Regex: ^<fmt/
    Priority: 6
  - Regex: ^"openvic-dataloader/
    Priority: 7
  - Regex: .*
    Priority: 8