Him188 / yamlkt

Multiplatform YAML parser & serializer for kotlinx.serialization written in pure Kotlin
Apache License 2.0
132 stars 14 forks source link

Never quote `null` #49

Closed masmc05 closed 1 year ago

masmc05 commented 2 years ago
value: "null"

will never be deserialized as null, but if we put stringSerialization = YamlBuilder.StringSerialization.DOUBLE_QUOTATION it will be serialized in this way this pr fixes this and makes it serialize as

value: null

no matter how it was configured