-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.clang-tidy
30 lines (28 loc) · 1.14 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
Checks: >
*,
-altera-struct-pack-align,
-llvmlibc-*,
-cert-dcl21-cpp,
-hicpp-avoid-c-arrays,
-cppcoreguidelines-avoid-c-arrays,
-cppcoreguidelines-pro-type-union-access,
-cppcoreguidelines-pro-type-reinterpret-cast,
-cppcoreguidelines-pro-type-const-cast,
-cppcoreguidelines-pro-bounds-pointer-arithmetic,
-google-readability-todo,
-fuchsia-overloaded-operator,
-fuchsia-default-arguments-calls,
-modernize-use-trailing-return-type,
-modernize-avoid-c-arrays,
-readability-identifier-length,
google-explicit-constructor,
readability-isolate-declaration
ExtraArgs: [-Wno-unknown-attributes]
CheckOptions:
- { key: readability-identifier-naming.NamespaceCase, value: lower_case }
- { key: readability-identifier-naming.PrivateMemberPrefix, value: _ }
- { key: readability-identifier-naming.FunctionCase, value: lower_case }
- { key: readability-identifier-naming.VariableCase, value: lower_case }
- { key: readability-identifier-naming.ParameterCase, value: lower_case }
- { key: readability-identifier-naming.GlobalConstantCase, value: CamelCase }
- { key: readability-identifier-naming.GlobalConstantPrefix, value: k }