-
Notifications
You must be signed in to change notification settings - Fork 34
nbtCompoundKeyQuote
SPGoding edited this page Apr 26, 2020
·
1 revision
🔧 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.