File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -4,8 +4,11 @@ HeaderFilterRegex: '.*'
44# ROOT throws lots of them in their headers
55# Bugprone:
66# These could cause actual bugs.
7- # enable cppcoreguidelines-virtual-class-destructor
7+ # C++ Core Guidelines
8+ # * cppcoreguidelines-virtual-class-destructor
89# Avoid undefined behaviour
10+ # * cppcoreguidelines-pro-type-member-init
11+ # Avoid unitialized member variables
912# enable google-build-using-namespace
1013# "using namespace" imports a changing amount of symbols, avoid it
1114# improve readability:
@@ -19,6 +22,7 @@ Checks: >-
1922 -bugprone-unhandled-self-assignment,
2023 -bugprone-reserved-identifier,
2124 cppcoreguidelines-pro-type-cstyle-cast,
25+ cppcoreguidelines-pro-type-member-init,
2226 cppcoreguidelines-virtual-class-destructor,
2327 modernize-make-unique,
2428 google-build-using-namespace,
You can’t perform that action at this time.
0 commit comments