Follow-up from "rails integration branch for "Remote Development Integration Branches""
The following discussion from !105783 should be addressed:
- [ ] @kassio started a [discussion](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/105783#note_1378335371): (+3 comments)
> **suggestion** I think we can remove one indentation level here for better readability:
>
> ```suggestion:-5+0
> if [restricted_prefix, restricted_prefix_underscore].any? { |prefix| variable.downcase.start_with?(prefix) }
> error_str = format("Variable name '%s' starts with '%s'", variable, prefix)
> raise ArgumentError, _(error_str)
> end
> ```