Closed
Description
I'd like to suggest a new rule which disallows this:
<MyComponent someProp={'foo'} />
where it should be:
<MyComponent someProp="foo" />
And the same for children/nodes:
<MyComponent>{'Foo'}</MyComponent>
Where it should be:
<MyComponent>Foo</MyComponent>