I have butiful code in my tests
public void createEntity(String jsonString) {
response = getBaseRequestWithCurrentCookie()
.given().
body(jsonString).
contentType(ContentType.JSON)
.when().
post()
.then().
log().ifError().
extract().response();
}
But how to configure intellij Idea code style(for Java) so that it doesn't align it ?
public void createEntity(String jsonString) {
response = getBaseRequestWithCurrentCookie()
.given().
body(jsonString).
contentType(ContentType.JSON)
.when().
post()
.then().
log().ifError().
extract().response();
}