UNPKG

e-lado

Version:

[![CircleCI](https://circleci.com/gh/sharetribe/sharetribe/tree/master.svg?style=svg)](https://circleci.com/gh/sharetribe/sharetribe/tree/master) [![Dependency Status](https://gemnasium.com/sharetribe/sharetribe.png)](https://gemnasium.com/sharetribe/shar

24 lines (17 loc) 481 B
# no-autofocus Enforce that autoFocus prop is not used on elements. Autofocusing elements can cause usability issues for sighted and non-sighted users, alike. #### References 1. [w3c](https://w3c.github.io/html/sec-forms.html#autofocusing-a-form-control-the-autofocus-attribute) ## Rule details This rule takes no arguments. ### Succeed ```jsx <div /> ``` ### Fail ```jsx <div autoFocus /> <div autoFocus="true" /> <div autoFocus="false" /> <div autoFocus={undefined} /> ```