Indent lambda function body in Intellij

Nemanja Zunic :

I have this example code that I want to pass some checkstyle rules but my formatter is not properly set up.

I just want an extra indent to lambda function body and change location of its right bracket }

This is what my code looks currently when I format it (Ctrl + Alt + L)

Optional.ofNullable(customerClient.
    getActiveCustomers()).map(customer -> {
    String firstName = customer.getFirstName();
    String lastName = customer.getLastName();
    return firstName + " " + lastName;
}).orElse(null);

but I need to change my formatter so that the code would look like this:

Optional.ofNullable(customerClient.
    getActiveCustomers()).map(customer -> {
        String firstName = customer.getFirstName();
        String lastName = customer.getLastName();
        return firstName + " " + lastName;
    }
).orElse(null);