nbtCompoundSortKeys - ChenCMD/datapack-helper-plus-JP GitHub Wiki
🔧 Fixable: これは、校閲機能によって使用される校閲ルールです。
NBT compoundのキーをソートするかどうか。
- (
"alphabetically"
): 大文字小文字を区別せず、アルファベット順にソートします。 - (
"nbtdoc"
): nbtdocsと同じ順序でソートします。このオプションはまだ完成していません。
{
"nbtCompoundSortKeys": null
}
summon minecraft:armor_stand ~ ~ ~ {Glowing: 1b, Invisible: 1b}
summon minecraft:armor_stand ~ ~ ~ {Invisible: 1b, Glowing: 1b}
{
"nbtCompoundSortKeys": ["warning", "alphabetically"]
}
summon minecraft:armor_stand ~ ~ ~ {Glowing: 1b, Invisible: 1b}
summon minecraft:armor_stand ~ ~ ~ {Invisible: 1b, Glowing: 1b}
このルールはDHP 2.0.0で実装されました。