We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 789145d commit 66368b3Copy full SHA for 66368b3
.clang-tidy
@@ -9,6 +9,8 @@ HeaderFilterRegex: '.*'
9
# Avoid undefined behaviour
10
# * cppcoreguidelines-pro-type-cstyle-cast
11
# Avoid C-Style Casts which might be problematic
12
+# * cppcoreguidelines-pro-type-member-init
13
+# Avoid unitialized member variables
14
# enable google-build-using-namespace
15
# "using namespace" imports a changing amount of symbols, avoid it
16
# improve readability:
@@ -22,6 +24,7 @@ Checks: >-
22
24
-bugprone-unhandled-self-assignment,
23
25
-bugprone-reserved-identifier,
26
cppcoreguidelines-pro-type-cstyle-cast,
27
+ cppcoreguidelines-pro-type-member-init,
28
cppcoreguidelines-virtual-class-destructor,
29
modernize-make-unique,
30
google-build-using-namespace,
0 commit comments