persona-community-5/.pnpm-store/v3/files/e5/ee4650723dff1c0e1e2d1ab457dbaf4a7a9e1b6ba6fb9beb1b5f9a9ff57e14eb2926a0eb5ef5b3244168c2ab48180d851396fede7c12d70f647fb8498a2f45
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

20 lines
481 B
Plaintext

---
description: 'Require spacing around infix operators.'
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
> 🛑 This file is source code, not the primary documentation location! 🛑
>
> See **https://typescript-eslint.io/rules/space-infix-ops** for documentation.
This rule extends the base [`eslint/space-infix-ops`](https://eslint.org/docs/rules/space-infix-ops) rule.
It adds support for enum members.
```ts
enum MyEnum {
KEY = 'value',
}
```