我找不到以下情况的代码示例:
"next-line": [
true,
"check-catch",
"check-finally",
"check-else",
"check-open-brace",
"check-whitespace"
],
我找不到以下情况的代码示例:
"next-line": [
true,
"check-catch",
"check-finally",
"check-else",
"check-open-brace",
"check-whitespace"
],
我认为没有下一行,我认为等效的是一行:
核心 TSLint没有next-line
规则部分,但有一个one-line
规则。文档不是很好,但它通常强制使用更紧凑的方式来放置大括号和关键字。
例如,这些很好:
class My Class {
// ...
}
if (true) {
// ...
} else {
// ...
}
而这会很糟糕:
class MyClass
{
// ...
}
if (true){
// missing whitespace above
}
else
{
// else is on the wrong line and the brace is also
}