nbtCompoundKeyQuote - ChenCMD/datapack-helper-plus-JP GitHub Wiki
🔧 Fixable: これは、校閲機能によって使用される校閲ルールです。
NBT compoundのキーに引用符を必要とするかどうか。
- (
false
): 必要なときのみ引用符で囲む。 - (
true
): 常に引用符で囲む。
{
"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}
このルールはDHP 2.0.0で実装されました。