Skip to content

Commit e5a9953

Browse files
committed
README: leading-zero
1 parent f475754 commit e5a9953

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ Example configuration:
5454
Available value: `{Boolean}` true
5555
5656
Example: `{ "always-semicolon": true }`
57+
5758
```css
5859
/* before */
5960
a { color: red }
@@ -70,6 +71,7 @@ Available values:
7071
* `{String}` of space characters (`/[ \t]*`)
7172
7273
Example: `{ "block-indent": 2 }`
74+
7375
```css
7476
/* before */
7577
a { color: red }
@@ -129,6 +131,7 @@ a { color:red }
129131
Available values: `{String}` `lower` or `upper`
130132
131133
Example: `{ "color-case": "lower" }`
134+
132135
```css
133136
/* before */
134137
a { color: #FFF }
@@ -151,6 +154,20 @@ b { color: #ffcc00 }
151154
b { color: #fc0 }
152155
```
153156
157+
### leading-zero
158+
159+
Available values: `{Boolean}` `true` or `false`
160+
161+
Example: `{ "leading-zero": false }`
162+
163+
```css
164+
/* before */
165+
p { padding: 0.5em }
166+
167+
/* after */
168+
p { padding: .5em }
169+
```
170+
154171
## Tests
155172
156173
Run `npm test` for tests.

0 commit comments

Comments
 (0)