nbtCompoundKeyQuote - SpyglassMC/Spyglass GitHub Wiki
🔧 Fixable: violations of this rule can be fixed by Code Actions.
Whether to quote keys in NBT compounds or not.
- (false): only quotes when necessary.
- (true): always quotes.
{
    "nbtCompoundKeyQuote": null
}summon minecraft:armor_stand ~ ~ ~ {Invisible: 1b}
summon minecraft:armor_stand ~ ~ ~ {"Invisible": 1b}
summon minecraft:armor_stand ~ ~ ~ {"this is crazy": 1b}{
    "nbtCompoundKeyQuote": ["warning", false]
}summon minecraft:armor_stand ~ ~ ~ {Invisible: 1b}
summon minecraft:armor_stand ~ ~ ~ {"this is crazy": 1b}summon minecraft:armor_stand ~ ~ ~ {"Invisible": 1b}{
    "nbtCompoundKeyQuote": ["warning", true]
}summon minecraft:armor_stand ~ ~ ~ {"Invisible": 1b}
summon minecraft:armor_stand ~ ~ ~ {"this is crazy": 1b}summon minecraft:armor_stand ~ ~ ~ {Invisible: 1b}This rule was introduced in DHP 2.0.0.