Skip to content

Commit 1ac2aa1

Browse files
committed
Proper cli examples
1 parent 2f06c71 commit 1ac2aa1

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ If you want to configure everything manually, but based on the codestyle from ex
203203
then by running
204204
205205
```bash
206-
./node_modules/.bin/csscomb -d template.css > .csscomb.json
206+
csscomb -d template.css > .csscomb.json
207207
```
208208
209209
you would generate this `.csscomb.json`:
@@ -253,8 +253,8 @@ csscomb ./test
253253
254254
CLI mode:
255255
```bash
256-
csscomb ./test --verbose
257-
csscomb ./test -v
256+
csscomb --verbose ./test
257+
csscomb -v ./test
258258
```
259259
260260
### template
@@ -267,8 +267,8 @@ Example: `{ "template": "example.css" }`
267267
268268
CLI mode — just provide path to `.css` file instead of `.csscomb.json`:
269269
```bash
270-
csscomb ./test --config example.css
271-
csscomb ./test -c example.css
270+
csscomb --config example.css ./test
271+
csscomb -c example.css ./test
272272
```
273273
274274
### always-semicolon

0 commit comments

Comments
 (0)