File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -396,9 +396,9 @@ function collectText(node, options) {
396
396
// break is the zero-width space character (U+200B), then the break is
397
397
// removed, leaving behind the zero-width space.
398
398
if (
399
- lines [ index ] . charCodeAt ( lines [ index ] . length - 1 ) === 0x20_0b /* ZWSP */ ||
399
+ lines [ index ] . charCodeAt ( lines [ index ] . length - 1 ) === 0x200b /* ZWSP */ ||
400
400
( index < lines . length - 1 &&
401
- lines [ index + 1 ] . charCodeAt ( 0 ) === 0x20_0b ) /* ZWSP */
401
+ lines [ index + 1 ] . charCodeAt ( 0 ) === 0x200b ) /* ZWSP */
402
402
) {
403
403
result . push ( lines [ index ] )
404
404
join = ''
Original file line number Diff line number Diff line change 69
69
"trailingComma" : " none"
70
70
},
71
71
"xo" : {
72
- "prettier" : true
72
+ "prettier" : true ,
73
+ "rules" : {
74
+ "unicorn/numeric-separators-style" : " off"
75
+ }
73
76
},
74
77
"remarkConfig" : {
75
78
"plugins" : [
You can’t perform that action at this time.
0 commit comments