50 lines
910 B
Plaintext
50 lines
910 B
Plaintext
---
|
|
description: 'Enforce consistent spacing before blocks.'
|
|
---
|
|
|
|
import Tabs from '@theme/Tabs';
|
|
import TabItem from '@theme/TabItem';
|
|
|
|
> 🛑 This file is source code, not the primary documentation location! 🛑
|
|
>
|
|
> See **https://typescript-eslint.io/rules/space-before-blocks** for documentation.
|
|
|
|
This rule extends the base [`eslint/space-before-blocks`](https://eslint.org/docs/rules/space-before-blocks) rule.
|
|
It adds support for interfaces and enums.
|
|
|
|
<Tabs>
|
|
<TabItem value="❌ Incorrect">
|
|
|
|
{/* prettier-ignore */}
|
|
```ts
|
|
enum Breakpoint{
|
|
Large,
|
|
Medium,
|
|
}
|
|
|
|
interface State{
|
|
currentBreakpoint: Breakpoint;
|
|
}
|
|
```
|
|
|
|
</TabItem>
|
|
<TabItem value="✅ Correct">
|
|
|
|
```ts
|
|
enum Breakpoint {
|
|
Large,
|
|
Medium,
|
|
}
|
|
|
|
interface State {
|
|
currentBreakpoint: Breakpoint;
|
|
}
|
|
```
|
|
|
|
</TabItem>
|
|
</Tabs>
|
|
|
|
## Options
|
|
|
|
In case a more specific options object is passed these blocks will follow `classes` configuration option.
|