Skip to main content

layer-name-pattern

指定层名称的模式。

¥Specify a pattern for layer names.

@layer foo {}
/** ↑

* This layer name */

message 次要选项 可以接受该规则的参数。

¥The message secondary option can accept the arguments of this rule.

选项

¥Options

string

指定未用 "/" 括起来的正则表达式字符串。

¥Specify a regex string not surrounded with "/".

鉴于:

¥Given:

{
"layer-name-pattern": "^[a-z][a-z0-9.-]*$"
}

以下模式被视为问题:

¥The following patterns are considered problems:

@layer Foo;
@layer foo.Bar {}
@layer foo, Bar {}
@import "foo.css" layer(Bar);

以下模式不被视为问题:

¥The following patterns are not considered problems:

@layer foo;
@layer foo.bar {}
@layer foo, bar {}
@import "foo.css" layer(bar);