linter-bundle
Version:
Ready-to use bundle of linting tools, containing configurations for ESLint, stylelint and markdownlint.
129 lines (97 loc) • 1.65 kB
Markdown
# selector-pseudo-element-case
Specify lowercase or uppercase for pseudo-element selectors.
<!-- prettier-ignore -->
```css
a::before {}
/** ↑
* This pseudo-element selector */
```
The [`fix` option](https://stylelint.io/user-guide/options/#fix) can automatically fix all of the problems reported by this rule.
## Options
`string`: `"lower"|"upper"`
### `"lower"`
The following patterns are considered problems:
<!-- prettier-ignore -->
```css
a:Before {}
```
<!-- prettier-ignore -->
```css
a:bEfOrE {}
```
<!-- prettier-ignore -->
```css
a:BEFORE {}
```
<!-- prettier-ignore -->
```css
a::Before {}
```
<!-- prettier-ignore -->
```css
a::bEfOrE {}
```
<!-- prettier-ignore -->
```css
a::BEFORE {}
```
<!-- prettier-ignore -->
```css
input::-MOZ-PLACEHOLDER {}
```
The following patterns are _not_ considered problems:
<!-- prettier-ignore -->
```css
a:before {}
```
<!-- prettier-ignore -->
```css
a::before {}
```
<!-- prettier-ignore -->
```css
input::-moz-placeholder {}
```
### `"upper"`
The following patterns are considered problems:
<!-- prettier-ignore -->
```css
a:Before {}
```
<!-- prettier-ignore -->
```css
a:bEfOrE {}
```
<!-- prettier-ignore -->
```css
a:BEFORE {}
```
<!-- prettier-ignore -->
```css
a::Before {}
```
<!-- prettier-ignore -->
```css
a::bEfOrE {}
```
<!-- prettier-ignore -->
```css
a::before {}
```
<!-- prettier-ignore -->
```css
input::-moz-placeholder {}
```
The following patterns are _not_ considered problems:
<!-- prettier-ignore -->
```css
a:BEFORE {}
```
<!-- prettier-ignore -->
```css
a::BEFORE {}
```
<!-- prettier-ignore -->
```css
input::-MOZ-PLACEHOLDER {}
```