forked from darglein/ADOP
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.clang-format
26 lines (26 loc) · 841 Bytes
/
.clang-format
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
# Commented out parameters are those with the same value as base LLVM style
# We can uncomment them if we want to change their value, or enforce the
# chosen value in case the base style changes (last sync: Clang 6.0.1).
---
### General config, applies to all languages ###
BasedOnStyle: Google
IndentWidth: 4
BreakBeforeBraces: Allman
ColumnLimit: 120
DerivePointerAlignment: false
PointerAlignment: Left
MaxEmptyLinesToKeep: 3
SortIncludes: true
IncludeBlocks: Regroup
IncludeCategories:
- Regex: '^"(saiga)/'
Priority: 1
- Regex: '^"(internal)/'
Priority: 2
- Regex: '"[[:alnum:]./]+"'
Priority: 3
- Regex: '<[[:alnum:]./]+>'
Priority: 4
IndentPPDirectives: AfterHash
AlignConsecutiveAssignments: true
AllowShortFunctionsOnASingleLine: Inline