hadashiA / VYaml

The extra fast, low memory footprint YAML library for C#, focued on .NET and Unity.
MIT License
295 stars 16 forks source link

Quote Numeric Strings #107

Open ArchLeaders opened 1 month ago

ArchLeaders commented 1 month ago

This PR adds a condition to the EmitStringAnalyzer that ensures that strings consisting of just numbers are quoted.

For example, 0001 should emit "0001", and 0001a should emit 0001a (as it did before).

More examples are outlined in the unit test.

hadashiA commented 1 month ago

Thanks so much. I'll check back soon.