in src/main/java/org/jetbrains/uncrustify/UncrustifyConfigWriter.java [28:37]
public void write_option(@NotNull String name, @NotNull String value) throws IOException {
writer.write(name);
for (int i = 0; i < DEFAULT_OPTION_ASSIGN_ALIGN - name.length(); i++) {
writer.write(' ');
}
writer.write("= ");
writer.write(value);
newLine();
newLine();
}