# stylus/block-opening-brace-space-before

require a single space or disallow whitespace before the opening brace of blocks.

  • ⚙️ This rule is included in "stylelint-plugin-stylus/standard". (options: "always")
  • 🔧 The fix option (opens new window) can automatically fix some of the problems reported by this rule.

# 📖 Rule Details

This rule require a single space or disallow whitespace before the opening brace of blocks.

# ❓ Why Not Use stylelint Rule

The block-opening-brace-space-before (opens new window) rule incorrectly report errors in Stylus.
This problem is that the core rules do not understand that can omit braces in Stylus.
The stylus/block-opening-brace-space-before rule understands that can omit braces in Stylus.

# 🔧 Options

See stylelint - block-opening-brace-space-before - Options (opens new window).

# 🔍 Implementation