块前空格
已弃用
格式化规则现在位于 eslint-stylistic 中。 @stylistic/ts/space-before-blocks 是此规则的替代品。
有关更多信息,请参阅 弃用格式化规则。
强制在块之前保持一致的空格。
🔧
此规则报告的一些问题可以通过 --fix
ESLint 命令行选项 自动修复。
此规则扩展了基本 eslint/space-before-blocks
规则。它添加了对接口和枚举的支持。
- ❌ 错误
- ✅ 正确
enum Breakpoint{
Large,
Medium,
}
interface State{
currentBreakpoint: Breakpoint;
}
在 Playground 中打开enum Breakpoint {
Large,
Medium,
}
interface State {
currentBreakpoint: Breakpoint;
}
在 Playground 中打开如何使用
.eslintrc.cjs
module.exports = {
"rules": {
// Note: you must disable the base rule as it can report incorrect errors
"space-before-blocks": "off",
"@typescript-eslint/space-before-blocks": "error"
}
};
在 playground 中尝试此规则 ↗
选项
请参阅 eslint/space-before-blocks
选项。
如果传递了更具体的选项对象,这些块将遵循 classes
配置选项。