I find myself constantly pressing ctrl-z to undo the automatic formatting that happens in templates. For example Resharper would like to format a foreach loop like this:
<%
foreach (var product in Model.Items)
{ %>
<li><%= product.Name %></li>
<% } %>
This is fine in c# code files but it just seems messy in templates. I would prefer to format it like this
<% foreach (var product in Model.Items) { %>
<li><%= product.Name %></li>
<% } %>