我尝试以es-lint
和case
语句与我的break
语句位于同一缩进级别的方式配置switch
。
使用"indent": [2, "tab", { "SwitchCase": 1, "VariableDeclarator": 1 }]
时,{1}}的缩进比break
还要case
。
"indent": [2, "tab", { "SwitchCase": 0, "VariableDeclarator": 1 }]
因某种原因,case
和break
与switch
处于同一级别,这不是我想要的。
是否可以创建缩进规则,如下所示?
switch (type) {
case INSERT_PERSON:
/* do stuff */
break;
// ...
}