Skip to content

Latest commit

 

History

History
25 lines (15 loc) · 641 Bytes

no-dataset.md

File metadata and controls

25 lines (15 loc) · 641 Bytes

Enforce usage of Element.prototype.getAttribute instead of Element.prototype.datalist (github/no-dataset)

💼 This rule is enabled in the 🔍 browser config.

Rule Details

Due to camel-case transformations, using dataset is not easily greppable. Instead, use el.getAttribute('data-what-ever').

👎 Examples of incorrect code for this rule:

el.dataset.coolThing

👍 Examples of correct code for this rule:

el.getAttribute('data-cool-thing')

Version

4.3.2