Right now I have a .clang-tidy
file that includes a large list of checks and they all go in one line like this:
Checks: '-*,bugprone-*,-bugprone-narrowing-conversions, cert-*, -cert-err58-cpp, clang-analyzer-*,cppcoreguidelines-*,-cppcoreguidelines-narrowing-conversions...'
Is there a way to list each check (enabled or disabled) in multiple lines for easier version control?
Right now I toggle word wrap and that helps editing, but it's very hard to diff in code reviews.
I'm looking for something like this:
Checks:
'-*,'
'cert-*,etc-*,'
...