Adds the option "LiteralInitializers" to
cppcoreguidelines-pro-type-member-init.
If set to non-zero, the check will provide fix-its with literal
initializers (`int i = 0;) instead of curly braces (int i{};`).
If find that more readable. Of course, this is purely a question of style,
thus the option is disabled by default.