A rule that enforces that the closing bracket of a component must be on its own line might be nice. Good: ``` jsx <MyComponent firstProp="value" secondProp="value" /> ``` Bad: ``` jsx <MyComponent firstProp="value" secondProp="value" /> ```