After running the formatter plugin, the following code (with new line after comma): ```java @SpringBootTest(classes = RibbonClientConfigurationIntegrationTests.TestLBConfig.class, properties = "test.ribbon.ServerListRefreshInterval=999") ``` will be converted to (with no new line): ```java @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.