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 9a04d83 commit 9f4575fCopy full SHA for 9f4575f
src/CssLint/Linter.php
@@ -402,7 +402,7 @@ protected function lintPropertyNameChar(string $sChar): ?bool
402
return true;
403
}
404
405
- if (!preg_match('/[-a-zA-Z]+/', $sChar)) {
+ if (!preg_match('/[-a-zA-Z0-9]+/', $sChar)) {
406
$this->addError('Unexpected property name token "' . $sChar . '"');
407
408
0 commit comments