el-beeswarm
Version:
<div style="display: flex; padding: 1rem; flex-direction: column; align-items: center; justify-content: center; height: 100vh; text-align: center; display: flex;
41 lines (29 loc) • 821 B
Markdown
# declaration-block-no-duplicate-custom-properties
Disallow duplicate custom properties within declaration blocks.
<!-- prettier-ignore -->
```css
a { --custom-property: pink; --custom-property: orange; }
/** ↑ ↑
* These duplicated custom properties */
```
This rule is case-sensitive.
## Options
### `true`
The following patterns are considered violations:
<!-- prettier-ignore -->
```css
a { --custom-property: pink; --custom-property: orange; }
```
<!-- prettier-ignore -->
```css
a { --custom-property: pink; background: orange; --custom-property: orange }
```
The following patterns are _not_ considered violations:
<!-- prettier-ignore -->
```css
a { --custom-property: pink; }
```
<!-- prettier-ignore -->
```css
a { --custom-property: pink; --cUstOm-prOpErtY: orange; }
```