-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.clang-tidy
91 lines (89 loc) · 3.58 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
---
# Re-enable google-readability-casting: it can be annoying, but it
# can catch some nasty bugs. E.g. C-style casts happily cast a pointer to the
# wrong type.
Checks: >
*,
-*-magic-numbers,
-hicpp-*,
-cppcoreguidelines-*,
-fuchsia-*,
-clion-*,
-cert-*,
-readability-named-parameter,
-llvm-header-guard,
-google-readability-todo,
-misc-unused-parameters,
-*-braces-around-statements,
-google-readability-casting,
-readability-else-after-return,
-modernize-use-auto,
-modernize-use-trailing-return-type,
-modernize-deprecated-headers,
-llvm-include-order,
-modernize-avoid-c-arrays,
-readability-uppercase-literal-suffix,
-bugprone-narrowing-conversions,
-readability-isolate-declaration,
-readability-convert-member-functions-to-static,
-modernize-use-default-member-init,
-misc-non-private-member-variables-in-classes,
-readability-implicit-bool-conversion,
-modernize-use-using,
-modernize-use-nodiscard,
-readability-non-const-parameter,
-llvmlibc-callee-namespace,
-llvmlibc-restrict-system-libc-headers,
-llvmlibc-implementation-in-namespace
# TODO: apply necessary code fixes so we can re-enable
#WarningsAsErrors: '*'
# This is OK because clang-tidy still displays the warnings
# Naming style checks (readability-identifier-naming).
CheckOptions:
- key: readability-identifier-naming.ClassCase
value: CamelCase
- key: readability-identifier-naming.TypeAliasCase
value: CamelCase
- key: readability-identifier-naming.TypedefCase
value: CamelCase
- key: readability-identifier-naming.EnumCase
value: CamelCase
- key: readability-identifier-naming.NamespaceCase
value: CamelCase
- key: readability-identifier-naming.EnumConstantCase
value: CamelCase
- key: readability-identifier-naming.GlobalConstantCase
value: CamelCase
- key: readability-identifier-naming.StaticConstantCase
value: CamelCase
- key: readability-identifier-naming.StaticVariableCase
value: CamelCase
- key: readability-identifier-naming.MemberCase
value: lower_case
# We only require the "_" suffix for private and protected members in order to
# allow struct members (which are public) to not use the suffix
- key: readability-identifier-naming.PrivateMemberCase
value: lower_case
- key: readability-identifier-naming.PrivateMemberSuffix
value: _
- key: readability-identifier-naming.ProtectedMemberCase
value: lower_case
- key: readability-identifier-naming.ProtectedMemberSuffix
value: _
# static class members also require the suffix
- key: readability-identifier-naming.ClassMemberCase
value: lower_case
- key: readability-identifier-naming.ClassMemberSuffix
value: _
- key: readability-identifier-naming.ParameterCase
value: lower_case
- key: readability-identifier-naming.VariableCase
value: lower_case
- key: readability-identifier-naming.MacroDefinitionCase
value: UPPER_CASE
- key: readability-identifier-naming.IgnoreMainLikeFunctions
value: 1
# TODO: add function naming rules (snake_case?).
# Because we want to be able to use acronyms, we don't want to enforce this
# We could add a //NOLINTNEXTLINE() to all of those, but this seems overkill.
...