new rule: allow only camel case in style property #3206
Open
Description
I want to enforce that
<div style={{ 'margin-top': 0 }}></div>
is Invalid syntax and to enforce that it will be written as
<div style={{ marginTop: 0 }}> </div>
I want to enforce that
<div style={{ 'margin-top': 0 }}></div>
is Invalid syntax and to enforce that it will be written as
<div style={{ marginTop: 0 }}> </div>