Closed
Description
After running the formatter plugin, the following code (with new line after comma):
@SpringBootTest(classes = RibbonClientConfigurationIntegrationTests.TestLBConfig.class,
properties = "test.ribbon.ServerListRefreshInterval=999")
will be converted to (with no new line):
@SpringBootTest(classes = RibbonClientConfigurationIntegrationTests.TestLBConfig.class, properties = "test.ribbon.ServerListRefreshInterval=999")
This is problematic, taken into account that we usually want to stick to a certain line length limit.