Skip to content

Commit 9fec22b

Browse files
cust0diantonyganch
authored andcommitted
Consistently use double quotes in JSON examples.
1 parent e5d4c79 commit 9fec22b

File tree

1 file changed

+25
-25
lines changed

1 file changed

+25
-25
lines changed

doc/options.md

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ Acceptable values:
9292
* `{String}` — string with whitespaces and tabs. Note that line breaks are not
9393
allowed here.
9494

95-
Example: `{ 'block-indent': 4 }`
95+
Example: `{ "block-indent": 4 }`
9696

9797
```scss
9898
// Before:
@@ -114,7 +114,7 @@ a {
114114
}
115115
```
116116

117-
Example: `{ 'block-indent': '' }`
117+
Example: `{ "block-indent": "" }`
118118

119119
```scss
120120
// Before:
@@ -396,7 +396,7 @@ Acceptable values:
396396

397397
* `abc` - sort unknown options alphabetically.
398398

399-
Example: `{ 'sort-order-fallback': 'abc', 'sort-order': ['top'] }`
399+
Example: `{ "sort-order-fallback": "abc", "sort-order": ["top"] }`
400400

401401
```scss
402402
// Before:
@@ -415,7 +415,7 @@ a {
415415
}
416416
```
417417

418-
Example: `{ 'sort-order-fallback': 'abc', 'sort-order': ['...'] }`
418+
Example: `{ "sort-order-fallback": "abc", "sort-order": ["..."] }`
419419

420420
```scss
421421
// Before:
@@ -442,7 +442,7 @@ Acceptable values:
442442
* `{Number}` — number of whitespaces;
443443
* `{String}` — string with whitespaces, tabs or line breaks.
444444

445-
Example: `{ 'space-after-colon': '' }`
445+
Example: `{ "space-after-colon": "" }`
446446

447447
```scss
448448
// Before:
@@ -458,7 +458,7 @@ a {
458458
}
459459
```
460460

461-
Example: `{ 'space-after-colon': 1 }`
461+
Example: `{ "space-after-colon": 1 }`
462462

463463
```scss
464464
// Before:
@@ -483,7 +483,7 @@ Acceptable values:
483483
* `{Number}` — number of whitespaces;
484484
* `{String}` — string with whitespaces, tabs or line breaks.
485485

486-
Example: `{ 'space-after-combinator': 1 }`
486+
Example: `{ "space-after-combinator": 1 }`
487487

488488
```scss
489489
// Before:
@@ -493,7 +493,7 @@ p>a { color: panda; }
493493
p> a { color: panda; }
494494
```
495495

496-
Example: `{ 'space-after-combinator': '\n ' }`
496+
Example: `{ "space-after-combinator": "\n " }`
497497

498498
```scss
499499
// Before:
@@ -513,7 +513,7 @@ Acceptable values:
513513
* `{Number}` — number of whitespaces;
514514
* `{String}` — string with whitespaces, tabs or line breaks.
515515

516-
Example: `{ 'space-between-declarations': 1 }`
516+
Example: `{ "space-between-declarations": 1 }`
517517

518518
```scss
519519
// Before:
@@ -533,7 +533,7 @@ a {
533533
}
534534
```
535535

536-
Example: `{ 'space-between-declarations': '\n ' }`
536+
Example: `{ "space-between-declarations": "\n " }`
537537

538538
```scss
539539
// Before:
@@ -557,7 +557,7 @@ Acceptable values:
557557
* `{Number}` — number of whitespaces;
558558
* `{String}` — string with whitespaces, tabs or line breaks.
559559

560-
Example: `{ 'space-after-opening-brace': 1 }`
560+
Example: `{ "space-after-opening-brace": 1 }`
561561

562562
```scss
563563
// Before:
@@ -567,7 +567,7 @@ a {color: panda;}
567567
a { color: panda;}
568568
```
569569

570-
Example: `{ 'space-after-opening-brace': '\n' }`
570+
Example: `{ "space-after-opening-brace": "\n" }`
571571

572572
```scss
573573
// Before:
@@ -587,7 +587,7 @@ Acceptable values:
587587
* `{Number}` — number of whitespaces;
588588
* `{String}` — string with whitespaces, tabs or line breaks.
589589

590-
Example: `{ 'space-after-selector-delimiter': 1 }`
590+
Example: `{ "space-after-selector-delimiter": 1 }`
591591

592592
```scss
593593
// Before:
@@ -601,7 +601,7 @@ a, b {
601601
}
602602
```
603603

604-
Example: `{ 'space-after-selector-delimiter': '\n' }`
604+
Example: `{ "space-after-selector-delimiter": "\n" }`
605605

606606
```scss
607607
// Before:
@@ -625,7 +625,7 @@ Acceptable values:
625625
* `{Number}` — number of whitespaces;
626626
* `{String}` — string with whitespaces, tabs or line breaks.
627627

628-
Example: `{ 'space-before-closing-brace': 1 }`
628+
Example: `{ "space-before-closing-brace": 1 }`
629629

630630
```scss
631631
// Before:
@@ -640,7 +640,7 @@ a {
640640
color: tomato; }
641641
```
642642

643-
Example: `{ 'space-before-closing-brace': '\n' }`
643+
Example: `{ "space-before-closing-brace": "\n" }`
644644

645645
```scss
646646
// Before:
@@ -664,7 +664,7 @@ Acceptable values:
664664
* `{Number}` — number of whitespaces;
665665
* `{String}` — string with whitespaces, tabs or line breaks.
666666

667-
Example: `{ 'space-before-colon': '' }`
667+
Example: `{ "space-before-colon": "" }`
668668

669669
```scss
670670
// Before:
@@ -680,7 +680,7 @@ a {
680680
}
681681
```
682682

683-
Example: `{ 'space-before-colon': 1 }`
683+
Example: `{ "space-before-colon": 1 }`
684684

685685
```scss
686686
// Before:
@@ -705,7 +705,7 @@ Acceptable values:
705705
* `{Number}` — number of whitespaces;
706706
* `{String}` — string with whitespaces, tabs or line breaks.
707707

708-
Example: `{ 'space-before-combinator': 1 }`
708+
Example: `{ "space-before-combinator": 1 }`
709709

710710
```scss
711711
// Before:
@@ -715,7 +715,7 @@ p>a { color: panda; }
715715
p >a { color: panda; }
716716
```
717717

718-
Example: `{ 'space-before-combinator': '\n' }`
718+
Example: `{ "space-before-combinator": "\n" }`
719719

720720
```scss
721721
// Before:
@@ -735,7 +735,7 @@ Acceptable values:
735735
* `{Number}` — number of whitespaces;
736736
* `{String}` — string with whitespaces, tabs or line breaks.
737737

738-
Example: `{ 'space-before-opening-brace': 1 }`
738+
Example: `{ "space-before-opening-brace": 1 }`
739739

740740
```scss
741741
// Before:
@@ -749,7 +749,7 @@ a {
749749
}
750750
```
751751

752-
Example: `{ 'space-before-opening-brace': '\n' }`
752+
Example: `{ "space-before-opening-brace": "\n" }`
753753

754754
```scss
755755
// Before:
@@ -773,7 +773,7 @@ Acceptable values:
773773
* `{Number}` — number of whitespaces;
774774
* `{String}` — string with whitespaces, tabs or line breaks.
775775

776-
Example: `{ 'space-before-selector-delimiter': 0 }`
776+
Example: `{ "space-before-selector-delimiter": 0 }`
777777

778778
```scss
779779
// Before:
@@ -787,7 +787,7 @@ a, b {
787787
}
788788
```
789789

790-
Example: `{ 'space-before-selector-delimiter': '\n' }`
790+
Example: `{ "space-before-selector-delimiter": "\n" }`
791791

792792
```scss
793793
// Before:
@@ -822,7 +822,7 @@ Acceptable values:
822822

823823
* `{Number}` — number of whitespaces;
824824

825-
Example: `{ 'tab-size': 2 }`
825+
Example: `{ "tab-size": 2 }`
826826

827827
```scss
828828
// Before:

0 commit comments

Comments
 (0)