Hi is it possible to setup spotless to replace static imports with non-static imports in Java? Example: Static import: ``` import static org.enums.Value.SOME_ENUM_VALUE; public class Test { public void method() { var example = SOME_ENUM_VALUE; } } ``` Replace with ``` import org.enums.Value.SOME_ENUM_VALUE; public class Test { public void method() { var example = Value.SOME_ENUM_VALUE; } } ```