跳至内容

@stylistic/ts/

space-before-blocks

此规则扩展了基本 space-before-blocks 规则。它添加了对接口和枚举的支持。

ts
/*eslint @stylistic/ts/space-before-blocks: "error"*/

enum Breakpoint{
  Large, Mediu
m
;
} interface State{ currentBreakpoint: Breakpoint; }
ts
/*eslint @stylistic/ts/space-before-blocks: "error"*/

enum Breakpoint {
  Large, Mediu
m
;
} interface State { currentBreakpoint: Breakpoint; }

选项

如果传递了更具体的选项对象,这些块将遵循 classes 配置选项。

正确
错误