ExampleMod1.7.10 icon indicating copy to clipboard operation
ExampleMod1.7.10 copied to clipboard

Spotless Rule

Open Taskeren opened this issue 7 months ago • 0 comments

The current spotless rule will insert a return (\n) before the 3rd function call in a chained function call, like:

"Hello!".toString().toString().toString();

will be transformed to

"Hello!".toString()
    .toString()
    .toString()

This is very ugly in almost all situations.

This is nothing about the line length limit, as I've tested it.

Taskeren avatar Jun 12 '25 07:06 Taskeren