mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-06 05:19:13 +08:00
32 lines
857 B
Text
32 lines
857 B
Text
---
|
|
description: 'Enforce consistent spacing before and after keywords.'
|
|
---
|
|
|
|
> 🛑 This file is source code, not the primary documentation location! 🛑
|
|
>
|
|
> See **https://typescript-eslint.io/rules/keyword-spacing** for documentation.
|
|
|
|
## Rule Details
|
|
|
|
This rule extends the base [`eslint/keyword-spacing`](https://eslint.org/docs/rules/keyword-spacing) rule.
|
|
This version adds support for generic type parameters on function calls.
|
|
|
|
## How to Use
|
|
|
|
```jsonc
|
|
{
|
|
// note you must disable the base rule as it can report incorrect errors
|
|
"keyword-spacing": "off",
|
|
"@typescript-eslint/keyword-spacing": ["error"]
|
|
}
|
|
```
|
|
|
|
## Options
|
|
|
|
See [`eslint/keyword-spacing` options](https://eslint.org/docs/rules/keyword-spacing#options).
|
|
|
|
<sup>
|
|
|
|
Taken with ❤️ [from ESLint core](https://github.com/eslint/eslint/blob/main/docs/rules/keyword-spacing.md)
|
|
|
|
</sup>
|