我正在试图找出我想用stylelint允许的选择器类模式的正确正则表达式
https://stylelint.io/user-guide/rules/selector-class-pattern/
我只想允许使用由hyphons分隔的小写字母和数字,并且只允许在开头使用下划线。所以基本上如下
console.log
我几乎已经开始工作了,但是只能在模式的开头才允许下划线。
.this-is-good
.also-good2
._this-works-too
.-not-this
.or-this-
.and_not_this
.OR-This