<img src='' />
<img/>
This rule aims to prohibit the usage of <img/> without specifying its source attribute because it causes extra and unnecessary http requests. This rule is build for the react library and JSX.
Examples of non compliant code for this rule:
<img src='' />
<img/>
Examples of compliant code for this rule:
import imgSvg from './img.svg'
<img src='./img.svg' />
<img src={imgSvg} />