Rule: erb-right-trim
This rule enforces the use of -%> for right-trimming ERB output tags (like <%= %>) instead of =%>.
While =%> can be used for right-trimming whitespace in some ERB engines (like Erubi), it is an obscure and not well-defined syntax that lacks consistent support across most ERB implementations.
The -%> syntax is the standard, well-documented approach for right-trimming that is universally supported and consistent with left-trimming syntax (<%-). Using -%> ensures compatibility across different ERB engines, improves code clarity, and aligns with established Rails and ERB conventions.
<%= title -%>
<% if condition? %>
<h1>Content</h1>
<% end %>
<% items.each do |item| %>
<li><%= item -%></li>
<% end %><%= title =%>
<% title =%>
<% if true =%>
<h1>Content</h1>
<% end %>
<% items.each do |item| =%>
<li><%= item %></li>
<% end %>