jscs
's disallowKeywordsOnNewLine
in的等价物是eslint
什么?我在文档中找不到它:(
disallowKeywordsOnNewLine 不允许将关键字放在新行上。
类型:数组
值:引用关键字的数组
例子
"disallowKeywordsOnNewLine": ["else"]
有效的
if (x < 0) {
x++;
} else {
x--;
}
无效的
if (x < 0) {
x++;
}
else {
x--;
}
也许此选项在 中不可用eslint
?