sindresorhus/eslint-plugin-unicorn

DOM traversing rules suggestions

Chiusa

#345 aperta il 19 ago 2019

 (4 commenti) (3 reazioni) (0 assegnatari)JavaScript (468 fork)user submission
help wantednew rule

Metriche repository

Star
 (5022 stelle)
Metriche merge PR
 (Merge medio 1g 16h) (399 PR mergiate in 30 g)

Descrizione

More readable

  • .childNodes[0] -> .firstChild
  • .children[0] -> .firstElementChild

More robust

  • .children[1] -> .querySelector('selector')
  • .children[1].children[2] -> .querySelector('selector')
  • .parentElement.parentElement -> .closest('selector')
  • .querySelector('a').querySelector('b') -> .querySelector('a b')

Guida contributor