Skip to content

nbtShortSuffix

SPGoding edited this page Apr 26, 2020 · 1 revision

Rule Details

🎨 Stylistic: this is a stylistic rule used by the formatting feature.

Enforce the suffix of NBT short tags.

  • ("s")
  • ("S")

Examples

Default

{
    "nbtShortSuffix": "s"
}

👍 Good

summon minecraft:armor_stand ~ ~ ~ {Fire: 32767s}

👎 Bad

summon minecraft:armor_stand ~ ~ ~ {Fire: 32767S}

S

{
    "nbtShortSuffix": "S"
}

👍 Good

summon minecraft:armor_stand ~ ~ ~ {Fire: 32767S}

👎 Bad

summon minecraft:armor_stand ~ ~ ~ {Fire: 32767s}

History

This rule was introduced in DHP 2.0.0.

Clone this wiki locally