-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.clang-tidy
40 lines (40 loc) · 1.63 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
37
38
39
40
---
Checks: >
-*,
bugprone-*,
cert-*,
clang-analyzer-*,
cppcoreguidelines-*,
google-*,
hicpp-*,
misc-*,
modernize-*,
performance-*,
portability-*,
readability-*
FormatStyle: file
CheckOptions:
cppcoreguidelines-special-member-functions.AllowSoleDefaultDtor: true
hicpp-special-member-functions.AllowSoleDefaultDtor: true
misc-non-private-member-variables-in-classes.IgnoreClassesWithAllMemberVariablesBeingPublic: true
readability-identifier-length.IgnoredParameterNames: ^ch|os$
readability-identifier-length.IgnoredVariableNames: ^ch|it$
readability-identifier-naming.ClassCase: lower_case
readability-identifier-naming.ConceptCase: lower_case
readability-identifier-naming.ConstantCase: lower_case
readability-identifier-naming.EnumCase: lower_case
readability-identifier-naming.EnumConstantCase: lower_case
readability-identifier-naming.EnumConstantPrefix: k_
readability-identifier-naming.FunctionCase: lower_case
readability-identifier-naming.GlobalConstantPrefix: k_
readability-identifier-naming.MacroDefinitionCase: UPPER_CASE
readability-identifier-naming.MacroDefinitionPrefix: GW_
readability-identifier-naming.MemberCase: lower_case
readability-identifier-naming.MethodCase: lower_case
readability-identifier-naming.NamespaceCase: lower_case
readability-identifier-naming.ParameterCase: lower_case
readability-identifier-naming.PrivateMemberPrefix: m_
readability-identifier-naming.StructCase: lower_case
readability-identifier-naming.TemplateParameterCase: CamelCase
readability-identifier-naming.TypeAliasCase: lower_case
readability-identifier-naming.VariableCase: lower_case