Philipp Partosch 46a936d7de added all files to project | 2 years ago | |
---|---|---|
.. | ||
README.md | 2 years ago | |
index.js | 2 years ago |
Disallow duplicate custom properties within declaration blocks.
a { --custom-property: pink; --custom-property: orange; }
/** ↑ ↑
* These duplicated custom properties */
This rule is case-sensitive.
true
The following patterns are considered violations:
a { --custom-property: pink; --custom-property: orange; }
a { --custom-property: pink; background: orange; --custom-property: orange }
The following patterns are not considered violations:
a { --custom-property: pink; }
a { --custom-property: pink; --cUstOm-prOpErtY: orange; }