-
-
Notifications
You must be signed in to change notification settings - Fork 74
Open
Description
Currently, the HoconConfigurationLoader does not support an option to save a configuration node with a white space character between statements.
Example of the loader I am using:
private HoconConfigurationLoader createLoader(final Path file) {
return HoconConfigurationLoader.builder()
.prettyPrinting(true)
.defaultOptions(opts -> opts.shouldCopyDefaults(true))
.path(file)
.build();
}
Desired outcome:
prefix = "my prefix"
Actual outcome:
prefix="my prefix"
Having a way to enable/customize this would allow for better formatting for HOCON files.
4drian3d and spektrsoyuz
Metadata
Metadata
Assignees
Labels
No labels