Urara-Blog/node_modules/.pnpm-store/v3/files/f3/69227438b0ce31edea403ce3ad76104b4cdd29008434c1ce46f4dd27ceb4846d21a61b7bbfa6ddb2cda199fc511d1e231a63270d4708b44a83a9a0a0781fa7
2022-08-14 01:14:53 +08:00

32 lines
821 B
Text

---
description: 'Enforce consistent brace style for blocks.'
---
> 🛑 This file is source code, not the primary documentation location! 🛑
>
> See **https://typescript-eslint.io/rules/brace-style** for documentation.
## Rule Details
This rule extends the base [`eslint/brace-style`](https://eslint.org/docs/rules/brace-style) rule.
It adds support for `enum`, `interface`, `namespace` and `module` declarations.
## How to Use
```jsonc
{
// note you must disable the base rule as it can report incorrect errors
"brace-style": "off",
"@typescript-eslint/brace-style": ["error"]
}
```
## Options
See [`eslint/brace-style` options](https://eslint.org/docs/rules/brace-style#options).
<sup>
Taken with ❤️ [from ESLint core](https://github.com/eslint/eslint/blob/main/docs/rules/brace-style.md)
</sup>