Skip to content

Latest commit

 

History

History
62 lines (43 loc) · 1.13 KB

space-before-blocks.md

File metadata and controls

62 lines (43 loc) · 1.13 KB

space-before-blocks

Enforces consistent spacing before blocks.

Rule Details

This rule extends the base eslint/space-before-blocks rule. It adds support for interfaces and enums:

❌ Incorrect

enum Breakpoint{
  Large, Medium;
}

interface State{
  currentBreakpoint: Breakpoint;
}

✅ Correct

enum Breakpoint {
  Large, Medium;
}

interface State {
  currentBreakpoint: Breakpoint;
}

In case a more specific options object is passed these blocks will follow classes configuration option.

How to Use

{
  // note you must disable the base rule as it can report incorrect errors
  "space-before-blocks": "off",
  "@typescript-eslint/space-before-blocks": ["error"]
}

Options

See eslint/space-before-blocks options.

Taken with ❤️ from ESLint core

Attributes

  • Configs:
    • ✅ Recommended
    • 🔒 Strict
  • 🔧 Fixable
  • 💭 Requires type information