Loading
[Clang-Tidy] Skip `misc-unused-parameters` in macro. (#194999)
The new parameter allows to skip the check for the cases when we need to use the macro, but there is no immediate way to fix the macro itself. It recently come up with a gradual adoption of clang-tidy and not all parts of the code could be fixed at once. Simply enabling it using `clang-tidy-diff` is not enough, since `misc-unused-parameters` would cause false-positive, since the given diff didn't introduce the unused parameters and might be not easy to change. The given parameters allow for better incremental adoption. --------- Co-authored-by:Dmitrii Kuragin <dkuragin@adobe.com> Co-authored-by:
EugeneZelenko <eugene.zelenko@gmail.com>