aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.clang-format
blob: 3b07efb2bbfcce8b3217e4a2567f90b52d685eb3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
Language: Cpp
BasedOnStyle: Chromium

AccessModifierOffset: -4
ColumnLimit: 100
IncludeBlocks: Regroup
IndentWidth: 4
SpacesBeforeTrailingComments: 1

IncludeCategories:
  - Regex: '^".*'
    Priority: 1
  - Regex: '^<(winapi)/'
    Priority: 2
  - Regex: '^<boost/'
    Priority: 3
  - Regex: '.*'
    Priority: 4
...