The `single-char-push-str` lint looks for single-char `&str`s added to `String`s via `push_str()` and suggests `push()`. It should be extended to also catch `insert_str(n, "a")` with single char args and suggest `insert(n, 'a')`.