Skip to content
This repository has been archived by the owner on Feb 21, 2022. It is now read-only.

Latest commit

 

History

History
40 lines (34 loc) · 891 Bytes

braceStyleRule.md

File metadata and controls

40 lines (34 loc) · 891 Bytes

brace-style (ESLint: brace-style)

rule_source test_source

enforce one true brace style

Usage

"brace-style": [
    true,
    "1tbs",
    {
      "allowSingleLine": true
    }
  ]
"brace-style": [
    true,
    "stroustrup",
    {
      "allowSingleLine": true
    }
  ]
"brace-style": [
    true,
    "allman",
    {
      "allowSingleLine": true
    }
  ]