Code Smells for JSX props

SonarQube Version: 7.9.1

Is there a plugin/check for Sonarqube to look for the specific scenario of props being rendered as html unintentionally?
For example:
<Component

a={a}
b={b}
/>
c={c}

should be a code smell and be flagged. The correct code should be:
<Component

a={a}
b={b}
c={c} />