tnorbye / kdoc-formatter

Reformats Kotlin KDoc comments, reflowing text and other cleanup, both via IDE plugin and command line utility
Apache License 2.0
73 stars 3 forks source link

Option to wrap lines after periods #101

Open solonovamax opened 1 month ago

solonovamax commented 1 month ago

An option to wrap lines after periods would be nice.

For example:

/**
 * This is some example text. Here is a second sentence.
 */

after formatting becomes

/**
 * This is some example text.
 * Here is a second sentence.
 */

Some edge cases:

solonovamax commented 1 month ago

oops hit enter on accident lol