There is any way to add max line length settings? For instance:
/**
* Connects the Kafka consumer and the producer to the broker, subscribes to the specified topic, and starts consuming messages. It takes in a callback function `catchMessageCallback` of type
* `EachMessageHandler` which is called for each message received by the consumer.
*
* @param {EachMessageHandler} catchMessageCallback
*/
would turn into:
/**
* Connects the Kafka consumer and the producer to the broker, subscribes to the specified topic,
* and starts consuming messages. It takes in a callback function `catchMessageCallback` of type
* `EachMessageHandler` which is called for each message received by the consumer.
*
* @param {EachMessageHandler} catchMessageCallback
*/
There is any way to add max line length settings? For instance:
would turn into: