File tree 4 files changed +48
-0
lines changed
test/yaml-preserve-example-props
4 files changed +48
-0
lines changed Original file line number Diff line number Diff line change
1
+ openapi : 3.0.0
2
+ info :
3
+ title : Repro
4
+ paths :
5
+ /items :
6
+ get :
7
+ responses :
8
+ ' 200 ' :
9
+ description : Successful response
10
+ content :
11
+ application/json :
12
+ schema :
13
+ type : object
14
+ properties :
15
+ properties :
16
+ type : object
17
+ text :
18
+ type : string
19
+ example :
20
+ properties :
21
+ text : " test"
Original file line number Diff line number Diff line change
1
+ verbose : true
2
+ output : output.yaml
3
+ # no-sort: true
Original file line number Diff line number Diff line change
1
+ openapi : 3.0.0
2
+ info :
3
+ title : Repro
4
+ paths :
5
+ /items :
6
+ get :
7
+ responses :
8
+ ' 200 ' :
9
+ description : Successful response
10
+ content :
11
+ application/json :
12
+ schema :
13
+ type : object
14
+ properties :
15
+ properties :
16
+ type : object
17
+ text :
18
+ type : string
19
+ example :
20
+ properties :
21
+ text : test
Original file line number Diff line number Diff line change @@ -52,6 +52,9 @@ function propComparator(priorityArr) {
52
52
* @returns {* }
53
53
*/
54
54
function prioritySort ( jsonProp , sortPriority , options ) {
55
+ if ( typeof jsonProp !== 'object' || jsonProp === null ) {
56
+ return jsonProp ;
57
+ }
55
58
return sortObjectByKeyNameList ( jsonProp , propComparator ( sortPriority ) ) ;
56
59
}
57
60
You can’t perform that action at this time.
0 commit comments