aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.clang-format
blob: 4b62047038673e0ea8cd9bab11067b3f79207423 (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
---
Language: Cpp
BasedOnStyle: Chromium

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

IncludeCategories:
  - Regex: '^".*'
    Priority: 1
  - Regex: '^<(server|lexer)/'
    Priority: 2
  - Regex: '^<benchmark/'
    Priority: 3
  - Regex: '^<boost/'
    Priority: 4
  - Regex: '.*'
    Priority: 5
...