Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 322 Bytes

no-duplicate-attributes.md

File metadata and controls

15 lines (10 loc) · 322 Bytes

no-duplicate-attributes

This rule forbids multiple attributes passed to a Component, Helper, or an ElementNode with the same name.

This rule forbids the following:

{{employee-details name=name age=age name=name}}

This rule allows the following:

{{employee-details name=name age=age}}