-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.clang-tidy
48 lines (47 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
41
42
43
44
45
46
47
48
Checks: "-*,\
readability-identifier-naming,\
bugprone-*,\
cert-dcl21-cpp,\
cert-dcl50-cpp,\
cert-env33-c,\
cert-err34-c,\
cert-err52-cpp,\
cert-err60-cpp,\
gcert-flp30-c,\
cert-msc50-cpp,\
cert-msc51-cpp,\
cppcoreguidelines-*,\
-cppcoreguidelines-macro-usage,\
-cppcoreguidelines-pro-type-reinterpret-cast,\
-cppcoreguidelines-pro-type-union-access,\
-cppcoreguidelines-pro-bounds-pointer-arithmetic,\
-cppcoreguidelines-pro-type-vararg,\
-cppcoreguidelines-avoid-magic-numbers,\
google-build-using-namespace,\
google-explicit-constructor,\
google-global-names-in-headers,\
google-runtime-int,\
google-runtime-operator,\
hicpp-*,\
-hicpp-vararg,\
misc-*,\
modernize-*,\
performance-*,\
readability-*,\
-readability-named-parameter,\
-readability-magic-numbers"
CheckOptions:
- { key: readability-identifier-naming.NamespaceCase, value: lower_case }
- { key: readability-identifier-naming.ClassCase, value: CamelCase }
- { key: readability-identifier-naming.PrivateMemberPrefix, value: m_ }
- { key: readability-identifier-naming.StructCase, value: CamelCase }
- { key: readability-identifier-naming.FunctionCase, value: lower_case }
- { key: readability-identifier-naming.VariableCase, value: lower_case }
- { key: readability-identifier-naming.GlobalConstantCase, value: UPPER_CASE }
- { key: bugprone-argument-comment.StrictMode, value: 1 }
- {
key: misc-non-private-member-variables-in-classes.IgnoreClassesWithAllMemberVariablesBeingPublic,
value: 1,
}
FormatStyle: "file"
HeaderFilterRegex: "^(*(?!rack|xmmintrin).*hpp)$"