We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a49be4 commit a7e8733Copy full SHA for a7e8733
lib/rules/shorthand-property-no-redundant-values/__tests__/index.mjs
@@ -89,6 +89,10 @@ testRule({
89
code: 'a { border-radius: var(--foo) var(--foo) / var(--foo) var(--foo); }',
90
description: 'ignore variables with slash in shorthand',
91
},
92
+ {
93
+ code: 'a { border-radius: 1px 1px , 1px 1px; }',
94
+ description: 'ignore invalid divider in border-radius (comma)',
95
+ },
96
{
97
code: 'a { border-color: #FFFFFF transparent transparent; }',
98
description: 'ignore upper case value',
0 commit comments