forked from p4lang/p4c
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.clang-format
37 lines (36 loc) · 872 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
27
28
29
30
31
32
33
34
35
36
37
# SPDX-License-Identifier: GPL-2.0
#
# clang-format configuration file. Intended for clang-format >= 4.
#
# For more information, see:
#
# Documentation/process/clang-format.rst
# https://clang.llvm.org/docs/ClangFormat.html
# https://clang.llvm.org/docs/ClangFormatStyleOptions.html
#
---
BasedOnStyle: Google
IndentWidth: 4
FixNamespaceComments: true
ColumnLimit: 100
SpacesBeforeTrailingComments: 2
AccessModifierOffset: -3
IncludeBlocks: Regroup
# Force pointers to the type for C++.
DerivePointerAlignment: false
PointerAlignment: Right
Standard: c++17
IncludeCategories:
# Matches common headers first and sorts them before project includes
- Regex: '^<.+/.*\.h>'
Priority: 2000
- Regex: '^<.+/.*>'
Priority: 4000
- Regex: '^<.*\.h>'
Priority: 1000
- Regex: '^<.*>'
Priority: 3000
- Regex: 'testgen/.*'
Priority: 6000
- Regex: '.*'
Priority: 5000