You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Current {% include "element/media-block/media-block.html" with type=media_i.media-block,type heading=media_i.media-block,heading image=media_i.media-block,image %}
Expected {% include "element/media-block/media-block.html" with type=media_i.type heading=media_i.heading image=media_i.image %}
Current {% if condition || otherCondition %}
Expected {% if condition or otherCondition %}
Even better (we like snake case) {% if condition or other_condition %}
The text was updated successfully, but these errors were encountered:
Current
{% if type === external-blank %}
Expected
{% if type == "external-blank" %}
Current
{{ var-with-dash }}
Expected
{{ var_with_underscores }}
Hbs
Current
{% include "element/media-block/media-block.html" with type=media_i.media-block,type heading=media_i.media-block,heading image=media_i.media-block,image %}
Expected
{% include "element/media-block/media-block.html" with type=media_i.type heading=media_i.heading image=media_i.image %}
Current
{% if condition || otherCondition %}
Expected
{% if condition or otherCondition %}
Even better (we like snake case)
{% if condition or other_condition %}
The text was updated successfully, but these errors were encountered: