-
Notifications
You must be signed in to change notification settings - Fork 34
nbtPathQuote
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 paths or not.
- (
false
): only quotes when necessary. - (
true
): always quotes.
{
"nbtPathQuote": null
}
data get entity @s Invisible
data get entity @s "Invisible"
data get entity @s "this is crazy"
{
"nbtPathQuote": ["warning", false]
}
data get entity @s Invisible
data get entity @s "this is crazy"
data get entity @s "Invisible"
{
"nbtPathQuote": ["warning", true]
}
data get entity @s "Invisible"
data get entity @s "this is crazy"
data get entity @s Invisible
This rule was introduced in DHP 2.0.0.