考虑以下JS代码:
const a = (
b
.c()
);
我希望editorconfig编写如下:
const a = (
b
.c()
);
这适用于花括号:
const a = {
foo: 'bar',
};
是否可以告诉editorconfig将括号作为大括号处理?
FIY:我正在使用IntelliJ / WebStorm
我的editorconfig如下:
[*]
indent_style = space
indent_size = 4
continuation_indent_size = 0
此问题可能与以下问题有关:How to indent square brackets identically as parentheses in Emacs?