nbtArrayCommaSpacing - SpyglassMC/Spyglass GitHub Wiki
🎨 Stylistic: this is a stylistic rule used by the formatting feature.
Enforce spacing around commas in NBT arrays. No matter what the settings are, spaces after trailing commas are always removed.
- (object) Root.
- 
before: (number) the number of spaces before the comma.
- 
after: (number) the number of spaces after the comma.
 
- 
{
    "nbtArrayCommaSpacing": { "before": 0, "after": 1 }
}summon minecraft:arrow ~ ~ ~ {Owner: [I; 0, 1, 2, 3]}summon minecraft:arrow ~ ~ ~ {Owner: [I; 0,1,2,3]}
summon minecraft:arrow ~ ~ ~ {Owner: [I; 0 ,1 ,2 ,3]}{
    "nbtArrayCommaSpacing": { "before": 0, "after": 0 }
}summon minecraft:arrow ~ ~ ~ {Owner: [I; 0,1,2,3]}summon minecraft:arrow ~ ~ ~ {Owner: [I; 0, 1, 2, 3]}
summon minecraft:arrow ~ ~ ~ {Owner: [I; 0 ,1 ,2 ,3]}This rule was introduced in DHP 2.0.0.