# List of rationales for check suppressions (where known).
# This have to precede the list because inline comments are not
# supported by clang-tidy.
#
#         -cppcoreguidelines-avoid-non-const-global-variables
# There are quite a lot of static variables in the test code that
# can not be replaced.
#
#         -readability-function-cognitive-complexity
# Many parameterized test bodies are inherently complex because they
# test a wide range of possibilities. We tend to value terseness
# over repetitive simplicity.
#
Checks:  -cppcoreguidelines-avoid-non-const-global-variables,
         -readability-function-cognitive-complexity
InheritParentConfig: true
