I'm looking for a way to stop self-closing tag like
<link rel='stylesheet' />
to
<link re='stylesheet'></link>
.
It's always become self-closing. I tried to remove save action in settting.json and add
"react/self-closing-comp": ["error", {
"component": false,
"html": false
}]
into tslint.json
, but it still not working.