Vojtěch Krása
Vojtěch Krása
That seems to be caused by https://github.com/dubreuia/intellij-plugin-save-actions Please report it there
Yes, I added a validation, because it is possible to produce config files without an actual configuration, like yours. Actually, I need to make it even more precise and a...
try this https://liuzy163.wordpress.com/2014/09/19/eclispe-workspace-mechanic-for-java-code-formatting-in-team-environment/
post the xml
Actually, I am not sure what you mean. I can provide build-in eclipse profiles and even read workspace config `eclipse-workspace\.metadata\.plugins\org.eclipse.core.runtime\.settings\org.eclipse.jdt.ui.prefs`, so you don't have to export it or use project...
Hmm, spotless uses my old implementation for import sorting. Are you sure you configured it properly? What is your config for import order?
I am starting to remember that there is some kind of hack in sorting static imports.... I think this is not supported: ``` import static somePackage.SomeZClass; ``` I don't even...
It is probably simplified too much, Eclipse converts it to this: ``` import static somePackage.Foo.SomeEnum.Bar; import java.util.function.Supplier; import somePackage.Foo.SomeZClass; ```
If I do this: ``` package somePackage; import static somePackage.Foo.SomeZClass; import static somePackage.Foo.SomeEnum.Bar; public class X { { SomeZClass(); } somePackage.Foo.SomeEnum bar=Bar; } ``` then Eclipse 2019-03 and 2019-12 sorts...