Add bugprone-argument-comment option: IgnoreSingleArgument.
When true, the check will ignore the single argument.
Sometimes, it's not necessary to add comment to single argument.
For example:
std::string name("Yubo Xie");
pScreen->SetWidth(1920);
pScreen->SetHeight(1080);
This option can ignore such single argument in bugprone-argument-comment check.
Why is it a global option? Are there other checks that would need the same option? The one below also needs to be check-local.