0

jscs's disallowKeywordsOnNewLinein的等价物是eslint什么?我在文档中找不到它:(

disallowKeywordsOnNewLine 不允许将关键字放在新行上。

类型:数组

值:引用关键字的数组

例子

"disallowKeywordsOnNewLine": ["else"]

有效的

if (x < 0) {
    x++;
} else {
    x--;
}

无效的

if (x < 0) {
    x++;
}
else {
    x--;
}

也许此选项在 中不可用eslint

4

1 回答 1

1

你在找brace-style什么eslint。链接:http ://eslint.org/docs/rules/brace-style

于 2015-07-02T18:58:06.947 回答