TL;DR: Add bugprone-argument-comment.CommentTemplate: <regex> configuration option.
It would be nice if users could have more control over the comment format that clang-tidy considers to be an argument comment. Common use-cases seen in the wild include:
/* parameter_name */ arg
arg /* parameter_name */
/* parameter_name = */ arg
Currently only (exactly) /*paramter_name=*/ works, so the above are not checked for correctness.