-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.clang-tidy
More file actions
215 lines (211 loc) · 9.6 KB
/
.clang-tidy
File metadata and controls
215 lines (211 loc) · 9.6 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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
---
# Borrowed from cmake-init project: https://github.com/friendlyanon/cmake-init
# with modifications to naming conventions and a few checks that were annoying me.
# Also added a few allowable identifer names < 3 characters.
# TODO: Look into integrating some options from https://github.com/bencsikandrei/clang-tidy-cpp-template
# Enable ALL the things! Except not really
# misc-non-private-member-variables-in-classes: the options don't do anything
# modernize-use-nodiscard: too aggressive, attribute is situational useful
# cppcoreguidelines-avoid-magic-numbers : essentially a duplicate of readability-magic-numbers
# hicpp-member-init: duplicate of cppcoreguidelines-pro-type-member-init
# modernize-use-trailing-return-type : doesn't feel idiomatic to me, and it's still a little confusing to read
# cert-dcl21-cpp: deprecated as of clang-tidy-19. Suggests returning of a `const` value.
# performance-enum-size: A bit of a premature optimization. Reduces readability for very little benefit.
Checks: "*,\
-google-readability-todo,\
-google-readability-avoid-underscore-in-googletest-name,\
-altera-*,\
-fuchsia-*,\
fuchsia-multiple-inheritance,\
-llvm-header-guard,\
-llvm-include-order,\
-llvmlibc-*,\
-cppcoreguidelines-avoid-magic-numbers,\
-modernize-use-nodiscard,\
-modernize-use-trailing-return-type,\
-misc-non-private-member-variables-in-classes,\
-cert-dcl21-cpp,\
-hicpp-member-init,\
-hicpp-special-member-functions,\
-hicpp-explicit-conversions,\
-hicpp-vararg,\
-performance-enum-size"
WarningsAsErrors: ""
CheckOptions:
# Conventional use of `os` and `is` for std::ostream and std::istream stream operator overloads
- key: "readability-identifier-length.IgnoredVariableNames"
value: '^(id|fd|nr|it|fn|tc|op|a|b|c|x|y)$'
- key: "readability-identifier-length.IgnoredParameterNames"
value: '^(os|is|id|fd|nr|it|fn|tc|op|c)$'
# Allow small, recognizable integer values. Not EVERYTHING has to be a constant, especially in academia
- key: "readability-magic-numbers.IgnoredIntegerValues"
value: "1;2;3;4;5;6;7;8;9;10;100"
# Qt headers are marked wrongly as "indirectly used", since they follow the
# stdlib convention of adding extra headers without the h(pp) suffix
- key: "misc-include-cleaner.IgnoreHeaders"
value: "Q*"
# For use with NonCopyable / NonMovable traits
- key: "cppcoreguidelines-special-member-functions.AllowImplicitlyDeletedCopyOrMove"
value: true
# While "const by defualt" is admittedly very nice, const in C / C++ could lead to dangerous behavior
# with unchecked pointers, or custom memory allocations. Modern compilers should also be smart enough
# to propegate const values at least in local scope, meaning this would just be visual bloat.
- key: "misc-const-correctness.AnalyzeValues"
value: "false"
# Stupid check by hicpp which says that (UNSIGNED_VAR >> 8) is wrong
- key: "hicpp-signed-bitwise.IgnorePositiveIntegerLiterals"
value: "true"
- key: "cppcoreguidelines-special-member-functions.AllowSoleDefaultDtor"
value: "true"
- key: "bugprone-argument-comment.StrictMode"
value: "true"
# Prefer using enum classes with 2 values for parameters instead of bools
- key: "bugprone-argument-comment.CommentBoolLiterals"
value: "true"
- key: "bugprone-misplaced-widening-cast.CheckImplicitCasts"
value: "true"
- key: "bugprone-sizeof-expression.WarnOnSizeOfIntegerExpression"
value: "true"
- key: "bugprone-suspicious-string-compare.WarnOnLogicalNotComparison"
value: "true"
- key: "readability-simplify-boolean-expr.ChainedConditionalReturn"
value: "true"
- key: "readability-simplify-boolean-expr.ChainedConditionalAssignment"
value: "true"
- key: "readability-uniqueptr-delete-release.PreferResetCall"
value: "true"
- key: "cppcoreguidelines-init-variables.MathHeader"
value: "<cmath>"
- key: "cppcoreguidelines-narrowing-conversions.PedanticMode"
value: "true"
# Allow some debug and logging macros
- key: "cppcoreguidelines-macro-usage.AllowedRegexp"
value: "^DEBUG*|^LOG*|^UNIMPLEMENTED|^ASSERT*"
- key: "readability-else-after-return.WarnOnUnfixable"
value: "true"
- key: "readability-else-after-return.WarnOnConditionVariables"
value: "true"
- key: "readability-inconsistent-declaration-parameter-name.Strict"
value: "true"
- key: "readability-qualified-auto.AddConstToQualified"
value: "true"
# Identifier conventions is currently:
# - `lower_case` for variables and functions
# - `CamelCase` for types and enum constants
# - `lower_case` for constants (compile-time or otherwise)
# - `lower_case` for namespaces
# - class members are prefixed with `m_`
# Only one that is definitive as of yet is functions based on HW01 description
- key: "readability-identifier-naming.AbstractClassCase"
value: "CamelCase"
- key: "readability-identifier-naming.ClassCase"
value: "CamelCase"
- key: "readability-identifier-naming.ClassConstantCase"
value: "lower_case"
- key: "readability-identifier-naming.ClassMemberCase"
value: "lower_case"
- key: "readability-identifier-naming.ClassMethodCase"
value: "lower_case"
- key: "readability-identifier-naming.ConstantCase"
value: "lower_case"
- key: "readability-identifier-naming.ConstantMemberCase"
value: "lower_case"
# Parameters are often `const&`, which should be the same case as other params
# const params that aren't refs or ptrs are almost never used anyways
- key: "readability-identifier-naming.ConstantParameterCase"
value: "lower_case"
- key: "readability-identifier-naming.ConstantPointerParameterCase"
value: "lower_case"
- key: "readability-identifier-naming.ConstexprFunctionCase"
value: "lower_case"
- key: "readability-identifier-naming.ConstexprMethodCase"
value: "lower_case"
- key: "readability-identifier-naming.ConstexprVariableCase"
value: "lower_case"
- key: "readability-identifier-naming.EnumCase"
value: "CamelCase"
- key: "readability-identifier-naming.EnumConstantCase"
value: "CamelCase"
- key: "readability-identifier-naming.FunctionCase"
value: "lower_case"
- key: "readability-identifier-naming.GlobalConstantCase"
value: "lower_case"
- key: "readability-identifier-naming.GlobalConstantPointerCase"
value: "lower_case"
- key: "readability-identifier-naming.GlobalFunctionCase"
value: "lower_case"
- key: "readability-identifier-naming.GlobalPointerCase"
value: "lower_case"
- key: "readability-identifier-naming.GlobalVariableCase"
value: "lower_case"
- key: "readability-identifier-naming.InlineNamespaceCase"
value: "lower_case"
- key: "readability-identifier-naming.LocalConstantCase"
value: "lower_case"
- key: "readability-identifier-naming.LocalConstantPointerCase"
value: "lower_case"
- key: "readability-identifier-naming.LocalPointerCase"
value: "lower_case"
- key: "readability-identifier-naming.LocalVariableCase"
value: "lower_case"
- key: "readability-identifier-naming.MacroDefinitionCase"
value: "UPPER_CASE"
- key: "readability-identifier-naming.MemberCase"
value: "lower_case"
- key: "readability-identifier-naming.MethodCase"
value: "lower_case"
- key: "readability-identifier-naming.NamespaceCase"
value: "lower_case"
- key: "readability-identifier-naming.ParameterCase"
value: "lower_case"
- key: "readability-identifier-naming.ParameterPackCase"
value: "lower_case"
- key: "readability-identifier-naming.PointerParameterCase"
value: "lower_case"
- key: "readability-identifier-naming.PrivateMemberCase"
value: "lower_case"
- key: "readability-identifier-naming.PrivateMemberSuffix"
value: "_"
- key: "readability-identifier-naming.PrivateMethodCase"
value: "lower_case"
- key: "readability-identifier-naming.ProtectedMemberCase"
value: "lower_case"
- key: "readability-identifier-naming.ProtectedMemberSuffix"
value: "_"
- key: "readability-identifier-naming.ProtectedMethodCase"
value: "lower_case"
- key: "readability-identifier-naming.PublicMemberCase"
value: "lower_case"
- key: "readability-identifier-naming.PublicMethodCase"
value: "lower_case"
- key: "readability-identifier-naming.ScopedEnumConstantCase"
value: "CamelCase"
- key: "readability-identifier-naming.StaticConstantCase"
value: "lower_case"
- key: "readability-identifier-naming.StaticVariableCase"
value: "lower_case"
- key: "readability-identifier-naming.StructCase"
value: "CamelCase"
- key: "readability-identifier-naming.TemplateParameterCase"
value: "CamelCase"
- key: "readability-identifier-naming.TemplateTemplateParameterCase"
value: "CamelCase"
- key: "readability-identifier-naming.TypeAliasCase"
value: "CamelCase"
# Allow for type aliases which comply with any standards named requirements
# Only includes some container and iterator idents for now.
- key: "readability-identifier-naming.TypeAliasIgnoredRegexp"
value: "^(value_type|size_type|difference_type|reference|const_reference|pointer|const_pointer|iterator|const_iterator|reverse_iterator|const_reverse_iterator|allocator_type)$"
# Not sure that CamelCase is ideal, but it should not be used anyways due to `modernize-use-using` check
- key: "readability-identifier-naming.TypedefCase"
value: "CamelCase"
- key: "readability-identifier-naming.TypeTemplateParameterCase"
value: "CamelCase"
- key: "readability-identifier-naming.UnionCase"
value: "CamelCase"
- key: "readability-identifier-naming.ValueTemplateParameterCase"
value: "CamelCase"
- key: "readability-identifier-naming.VariableCase"
value: "lower_case"
- key: "readability-identifier-naming.VirtualMethodCase"
value: "lower_case"