-
Notifications
You must be signed in to change notification settings - Fork 6
/
.clang-format
91 lines (84 loc) · 2.08 KB
/
.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#https://clang.llvm.org/docs/ClangFormatStyleOptions.html
# 每行字符的限制,0表示没有限制
ColumnLimit: 115
IndentWidth: 4
UseTab: Never
MaxEmptyLinesToKeep: 3
#SeparateDefinitionBlocks: Leave
AllowAllParametersOfDeclarationOnNextLine: false
AllowShortBlocksOnASingleLine: false
AllowShortCaseLabelsOnASingleLine: false
AllowShortFunctionsOnASingleLine: None
AllowShortIfStatementsOnASingleLine: false
AllowShortLoopsOnASingleLine: false
BinPackArguments: false
BreakBeforeTernaryOperators: false
SortIncludes: false
PointerAlignment: Middle
BreakBeforeBraces: Custom
BraceWrapping:
AfterFunction: true
AfterExternBlock: false
BeforeCatch: false
BeforeElse: false
BeforeWhile: false
BeforeCatch: false
BeforeWhile: false
AfterStruct: false
StatementMacros: [
'__drv_allocatesMem',
'__drv_freesMem',
'__drv_preferredFunction',
'__drv_setsIRQL',
'_Acquires_exclusive_lock_',
'_Acquires_lock_',
'_Acquires_shared_lock_',
'_Acquires_rcu_',
'_At_',
'_At_buffer_',
'_Check_return_',
'_Dispatch_type_',
'_Field_size_bytes_',
'_Function_class_',
'_Guarded_by_',
'_IRQL_lowers_',
'_IRQL_raises_',
'_IRQL_requires_',
'_IRQL_requires_max_',
'_IRQL_requires_min_',
'_IRQL_requires_same_',
'_IRQL_restores_',
'_IRQL_restores_global_',
'_IRQL_saves_',
'_IRQL_saves_global_',
'_Must_inspect_result_',
'_Out_writes_bytes_all_',
'_Post_equals_last_error_',
'_Post_maybenull_',
'_Post_notnull_',
'_Post_writable_byte_size_',
'_Releases_exclusive_lock_',
'_Releases_lock_',
'_Releases_shared_lock_',
'_Releases_rcu_',
'_Requires_shared_lock_held_',
'_Requires_exclusive_lock_held_',
'_Requires_lock_held_',
'_Requires_lock_not_held_',
'_Requires_rcu_held_',
'_Ret_bytecount_',
'_Ret_maybenull_',
'_Ret_range_',
'_Ret_writes_bytes_',
'_Return_type_success_',
'_Success_',
'_Use_decl_annotations_',
'_When_',
'EXTERN_C',
'INITCODE',
'NONPAGED',
'PAGED',
'PAGEDX',
'DllExport',
'PNPCODE'
]