I'm trying to prevent inconsistent indentations in import statements like this:
...
import org.apache.commons.lang3.tuple.ImmutablePair;
import org.apache.commons.lang3.tuple.Pair;
import org.jetbrains.annotations.NotNull;
import org.junit.After;
import org.junit.Before; // ← this line
import org.junit.Test;
import org.junit.runner.RunWith;
...
The Indentation module doesn't do the trick, nor does the import config
What am I missing? Thanks.