.clang-format 650 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
---
BasedOnStyle:  Google
SortIncludes: true
AllowShortIfStatementsOnASingleLine: false
AllowShortLoopsOnASingleLine: false
AllowShortFunctionsOnASingleLine: false
DerivePointerAlignment: true
PointerAlignment: Left
ColumnLimit: 80
ForEachMacros: ['list_for_every_entry','list_for_every_entry_safe']
IncludeBlocks: Regroup
IncludeCategories:
13
14
  - Regex:           '^<simbricks/.*'
    Priority:        3
15
16
17
18
19
20
21
22
    SortPriority:    0
  - Regex:           '^<.*\.h>'
    Priority:        1
    SortPriority:    0
  - Regex:           '^<.*'
    Priority:        2
    SortPriority:    0
  - Regex:           '.*'
23
    Priority:        4
24
    SortPriority:    0