spags
spags
My settings are. 4=com.xxx 3=java 2=javax 1= 0=\# My spotless configuration points to my resource/myTeam.importOrder and the plugin points to the same file for import order.
Here's what I wrote locally ``` package somePackage; import static somePackage.Foo.SomeZClass; import static somePackage.Foo.SomeEnum.Bar; import java.util.function.Supplier; // Use as a type argument to be a static import. public class Foo...
Just to confirm the expected behavior is that we have ``` import static somePackage.Foo.SomeEnum.Bar; import static somePackage.Foo.SomeZClass; ``` ?
Yes I just ran it in eclipse and see the behavior you mention. But the plugin for Intellij has a different behavior than what is in eclipse. And spotless has...
For clarity the three behaviors I observe from my given import above ``` import static somePackage.Foo.SomeZClass; import static somePackage.Foo.SomeEnum.Bar; import java.util.function.Supplier; ``` Eclipse running "Organize Import" produces: ``` import static...
Thank you for the response. I statically import SomeZcClass to avoid the FQN in the argument. The other option is if I manually format it like Eclipse than spotless and...
Is the benchmark that was run still available with the move to github?
Hi @tj. I was wondering how often you get a chance to review PRs to this repo. I noticed there wasn't any updates in the last year. Thank you!
@sf105 what's the biggest hurdle or blockers for updating to java8? Is it technical like overcoming generics or having the capacity to work on it? If it's technical, I like...
I'm still seeing this issue with java8, scala 2.11, and mockito-scala-scalatest 1.16.46. ``` modifiers java.lang.NoSuchFieldException: modifiers ``` I'm using the code from the example in the readme ```object FooObject {...