Shopify / erb-lint

Lint your ERB or HTML files
MIT License
593 stars 114 forks source link

Linter for indentation of html #260

Open toy opened 2 years ago

toy commented 2 years ago

It would be really useful to have a linter for html indentation level to see easier what wraps what, as it may be easy during refactoring to accidentally get confused about wrapping and follow indentation:

<%= some_helper %>
  <%= some_other_helper do %>
    <% if some_condition %>
    <%= some_helper %>
  <% end %>
<% end %>