Check "de.unkrig: Wrap array initializer"

Verifies that array initializers are uniformly wrapped and indented.

Array initializers appear in two different flavors:

// NEW expression:
x = new String[3][4][] { { { "a", "b" } } };

// Field or local variable initializer:
String[][] x = { { "a", "b" } };

The phrase "wrap before X" means that a line break and spaces appear right before "X", such that "X" is vertically aligned with the first token in the immediately preceding line.

Quickfixes:

Wrap line
Wraps this line at the correct position.
Join lines
Appends this line to the previous.
Correct indentation
Corrects the indentation of this line.