Is there a way to configure IntelliJ to automatically insert a blank line before return statement when using CTRL + ALT + L?
Here’s how my code looks:
public static String getValue() {
String some = "a";
String another = "bb";
return some;
}
I would like it to reformat to (CTRL + ALT + L):
public static String getValue() {
String some = "a";
String another = "bb";
return some;
}