Enforce usage of the callback form of `this.setState` ```ts // bad this.setState({ ... }); // good this.setState((prevState, props) => ...); ```