如何根据我的示例配置 Intellij idea 代码格式
How to configure Intellij idea code formatting to according my example
我的测试中有很多代码
public void createEntity(String jsonString) {
response = getBaseRequestWithCurrentCookie()
.given().
body(jsonString).
contentType(ContentType.JSON)
.when().
post()
.then().
log().ifError().
extract().response();
}
但是如何配置intellij Idea代码风格(for Java)使其不对齐呢?
public void createEntity(String jsonString) {
response = getBaseRequestWithCurrentCookie()
.given().
body(jsonString).
contentType(ContentType.JSON)
.when().
post()
.then().
log().ifError().
extract().response();
}
- 将构建器方法名称添加到设置(macOS 上的首选项)|编辑|代码风格 | Java |包装和大括号 |链式方法调用 | 生成器方法
- 启用设置(macOS 上的首选项)|编辑|代码风格 | Java |包装和大括号 |链式方法调用 | 保持生成器方法缩进 选项:
我的测试中有很多代码
public void createEntity(String jsonString) {
response = getBaseRequestWithCurrentCookie()
.given().
body(jsonString).
contentType(ContentType.JSON)
.when().
post()
.then().
log().ifError().
extract().response();
}
但是如何配置intellij Idea代码风格(for Java)使其不对齐呢?
public void createEntity(String jsonString) {
response = getBaseRequestWithCurrentCookie()
.given().
body(jsonString).
contentType(ContentType.JSON)
.when().
post()
.then().
log().ifError().
extract().response();
}
- 将构建器方法名称添加到设置(macOS 上的首选项)|编辑|代码风格 | Java |包装和大括号 |链式方法调用 | 生成器方法
- 启用设置(macOS 上的首选项)|编辑|代码风格 | Java |包装和大括号 |链式方法调用 | 保持生成器方法缩进 选项: