Pull requests are more than welcome! There are very few rules, and here they are:
- Write beautiful commit messages.
- JavaScript code adheres to the Airbnb style guide.
- HTML attributes should be on separate lines, and indented, like this:
<!-- bad -->
<my-custom-element id="special" class="snowflake" animation-status={{animationStatus}}></my-custom-element>
<!-- good -->
<my-custom-element
id="special"
class="snowflake"
animation-status={{animationStatus}}>
</my-custom-element>