Initial commit

This commit is contained in:
Patrick Marsceill
2017-03-09 13:16:08 -05:00
commit b7b0d0d7bf
4147 changed files with 401224 additions and 0 deletions
+105
View File
@@ -0,0 +1,105 @@
# selector-pseudo-element-case
Specify lowercase or uppercase for pseudo-element selectors.
```css
a::before {}
/** ↑
* This is pseudo-element selector */
```
## Options
`string`: `"lower"|"upper"`
### `"lower"`
The following patterns are considered warnings:
```css
a:Before {}
```
```css
a:bEfOrE {}
```
```css
a:BEFORE {}
```
```css
a::Before {}
```
```css
a::bEfOrE {}
```
```css
a::BEFORE {}
```
```css
input::-MOZ-PLACEHOLDER {}
```
The following patterns are *not* considered warnings:
```css
a:before {}
```
```css
a::before {}
```
```css
input::-moz-placeholder {}
```
### `"upper"`
The following patterns are considered warnings:
```css
a:Before {}
```
```css
a:bEfOrE {}
```
```css
a:BEFORE {}
```
```css
a::Before {}
```
```css
a::bEfOrE {}
```
```css
a::before {}
```
```css
input::-moz-placeholder {}
```
The following patterns are *not* considered warnings:
```css
a:BEFORE {}
```
```css
a::BEFORE {}
```
```css
input::-MOZ-PLACEHOLDER {}
```