-
-
Notifications
You must be signed in to change notification settings - Fork 80
Closed
Labels
Description
Bug Report
The html-no-duplicate-attributes linter rule should report this using a Duplicate attribute "class" found on tag. Remove the duplicate occurrence. error:
<div
class="post"
<% if active? %>
class="active"
<% end %>
>
</div>Playground
Additional Context
With #444 we introduced the ControlFlowTrackingVisitor that should allow us to implement this.
Reactions are currently unavailable