Hello @gurkankaymak ,
thank you for the lib! I'm having a parsing problem when my property ends with a number.
I wrote the following test case that is failing and it shouldn’t:
--- FAIL: TestPropertyEndingWithNum (0.00s)
--- FAIL: TestPropertyEndingWithNum/parse_config_with_num (0.00s)
~/github.com/gurkankaymak/hocon/parser_test.go:53: not expected an error, got err: "missing comma! at: 1:21, values should have comma or ASCII newline ('\\n') between them"
as you can see the only difference between the two strings under test, is that the latter ends with .100 if i use the HOCON playground the property gets correctly parsed.
I also tested the same property with https://github.com/chimpler/pyhocon and it seems legit
Hello @gurkankaymak , thank you for the lib! I'm having a parsing problem when my property ends with a number. I wrote the following test case that is failing and it shouldn’t:
the test fails with:
as you can see the only difference between the two strings under test, is that the latter ends with
.100
if i use the HOCON playground the property gets correctly parsed. I also tested the same property with https://github.com/chimpler/pyhocon and it seems legit