UNPKG

stylelint

Version:
38 lines (27 loc) 334 B
# selector-no-id Disallow id selectors. ```css #foo {} /** ↑ * This type of selector */ ``` The following patterns are considered warnings: ```css #foo {} ``` ```css .bar > #foo {} ``` ```css #foo.bar {} ``` The following patterns are *not* considered warnings: ```css a {} ``` ```css .foo {} ``` ```css [foo] {} ```