Skip to content

Commit

Permalink
Add two new checks to clang-tidy.
Browse files Browse the repository at this point in the history
  • Loading branch information
linuxdude42 committed Nov 15, 2019
1 parent 66b1b7b commit a834136
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .clang-tidy
Expand Up @@ -134,6 +134,9 @@ Checks: '-*,
-cppcoreguidelines-slicing,
-cppcoreguidelines-special-member-functions,
google-explicit-constructor,
-google-runtime-int,
misc-*,
# Cases exist. Need to add getters/setters to classes. ,
Expand Down Expand Up @@ -186,11 +189,15 @@ Checks: '-*,
-readability-function-size,
# Will fix member names, but not any uses of the changed
# memeber names. ,
# memeber names.
#
# Done for all but libmythtv and libmythui. ,
-readability-identifier-naming,
# Wants to convert all "if (x)" pointer validity checks to be
# "if (x != nullptr)" ,
# "if (x != nullptr)". These should be ignored as the
# AllowPointerConditions key is set to "1", but tidy complains
# anyway. ,
-readability-implicit-bool-conversion,
# Has two issues:
Expand Down

0 comments on commit a834136

Please sign in to comment.