We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6baf145 commit a7e8180Copy full SHA for a7e8180
README.md
@@ -83,6 +83,7 @@ a { color: red }
83
```
84
85
### colon-space
86
+
87
Available values:
88
* `{Boolean}` true (means `after`)
89
* `{String}`: `before`, `after`, `both` or any combination of whitespaces
@@ -123,6 +124,19 @@ a { color: red }
123
124
a { color:red }
125
126
127
+### color-case
128
129
+Available values: `{String}` `lower` or `upper`
130
131
+Example: `{ "color-case": "lower" }`
132
+```css
133
+/* before */
134
+a { color: #FFF }
135
136
+/* after */
137
+a { color: #fff }
138
+```
139
140
## Tests
141
142
Run `npm test` for tests.
0 commit comments