We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d165cfe commit 9fc8848Copy full SHA for 9fc8848
hjson.lua
@@ -33,17 +33,17 @@ local function preprocess_encode_options(options)
33
return result
34
end
35
36
- if options.skip_keys == true then
+ if options.skipKeys == true then
37
print("skipkeys is deprecated, use skip_keys instead")
38
options.skip_keys = true
39
40
41
- if options.sort_keys == true then
+ if options.sortKeys == true then
42
print("sortKeys is deprecated, use sort_keys instead")
43
options.sort_keys = true
44
45
46
- if options.invalid_objects_as_type == true then
+ if options.invalidObjectsAsType == true then
47
print("invalidObjectsAsType is deprecated, use invalid_objects_as_type instead")
48
options.invalid_objects_as_type = true
49
0 commit comments