Is there a way to selectively disable clang-tidy warnings. For example, I have readability-identifier-naming checks enabled, and also display warnings inside header through header-filter. All methods are checked if they are in CamelCase. However, there are occasionally classes that are to be drop-in replacement of another STD class or Boost class and thus they have the lower case naming convention. In this case, clang-tidy emits a lot of warnings. Is there a way to disable them for specific segment of codes. Similar to the effect of // clang-format off and // clang-format on for clang-format.