I'm looking for an existing eslint rule that prefers this syntax in React Class components. Does something like this exist?
class Foo extends Component {
Over this:
class Foo extends React.Component {
Except trying to word this in a quick search is not very fruitful. Currently looking into implementing a custom rule.