-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.clang-tidy
36 lines (36 loc) · 1.37 KB
/
.clang-tidy
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
---
Checks: >
-*,
bugprone-*,
cert-*,
cppcoreguidelines-*,
google-*,
hicpp-*,
misc-*,
modernize-*,
performance-*,
portability-*,
readability-*
FormatStyle: file
CheckOptions:
cppcoreguidelines-special-member-functions.AllowSoleDefaultDtor: true
hicpp-special-member-functions.AllowSoleDefaultDtor: true
readability-identifier-naming.ClassCase: CamelCase
readability-identifier-naming.ConstantCase: CamelCase
readability-identifier-naming.ConstantPrefix: k
readability-identifier-naming.EnumCase: CamelCase
readability-identifier-naming.EnumConstantCase: CamelCase
readability-identifier-naming.EnumConstantPrefix: k
readability-identifier-naming.FunctionCase: CamelCase
readability-identifier-naming.LocalConstantCase: lower_case
readability-identifier-naming.LocalConstantPrefix: ""
readability-identifier-naming.MacroDefinitionCase: UPPER_CASE
readability-identifier-naming.MemberCase: lower_case
readability-identifier-naming.MethodCase: CamelCase
readability-identifier-naming.NamespaceCase: lower_case
readability-identifier-naming.ParameterCase: lower_case
readability-identifier-naming.PrivateMemberSuffix: _
readability-identifier-naming.StructCase: CamelCase
readability-identifier-naming.TemplateParameterCase: CamelCase
readability-identifier-naming.TypeAliasCase: CamelCase
readability-identifier-naming.VariableCase: lower_case