Skip to content

Latest commit

 

History

History
55 lines (38 loc) · 701 Bytes

README.md

File metadata and controls

55 lines (38 loc) · 701 Bytes

selector-id-pattern

Specify a pattern for ID selectors.

.foo, #bar.baz a, #hoo[disabled] { color: pink; }
/**   ↑           ↑
 * These ID selectors */

选项

regex|string

A string will be translated into a RegExp — new RegExp(yourString) — so be sure to escape properly.

The selector value after # will be checked. No need to include # in your pattern.

Given the string:

"foo-[a-z]+"

以下模式被视为违规:

#foop {}
#foo-BAR {}
div > .zing + #foo-BAR {}

以下模式被视为违规:

#foo-bar {}
div > .zing + #foo-bar {}
.foop {}
[foo='bar'] {}