-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.clang-tidy
More file actions
33 lines (31 loc) · 1.09 KB
/
.clang-tidy
File metadata and controls
33 lines (31 loc) · 1.09 KB
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
---
Checks: >
bugprone-*,
-bugprone-exception-escape,
cert-*,
clang-analyzer-*,
google-*,
misc-*,
-misc-const-correctness,
modernize-*,
performance-*,
readability-*,
-readability-identifier-length,
-readability-magic-numbers
CheckOptions:
misc-include-cleaner.IgnoreHeaders: pybind11/.*
readability-identifier-naming.NamespaceCase: lower_case
readability-identifier-naming.ClassCase: CamelCase
readability-identifier-naming.StructCase: CamelCase
readability-identifier-naming.FunctionCase: CamelCase
readability-identifier-naming.VariableCase: lower_case
readability-identifier-naming.ParameterCase: lower_case
readability-identifier-naming.MemberCase: lower_case
readability-identifier-naming.MemberSuffix: _
readability-identifier-naming.PublicMemberCase: lower_case
readability-identifier-naming.PublicMemberSuffix: ''
readability-identifier-naming.ConstantCase: UPPER_CASE
readability-identifier-naming.EnumConstantCase: CamelCase
readability-identifier-naming.EnumConstantPrefix: k
readability-function-cognitive-complexity.Threshold: 25
FormatStyle: google