用于stylelint选择器类模式规则的正则表达式

时间:2017-07-23 21:33:07

标签: regex stylelint

我正在试图找出我想用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

0 个答案:

没有答案