So it seems the parser is confused when an inline list does not have space juste before the ]:
will work fine, but the other valid
will end with an error about a missing comma because it think that 1] is a string token instead of a number followed by ]
I'm trying to find a way to solve the issue as it prevent to parse some perfectly valid YAML files.
So it seems the parser is confused when an inline list does not have space juste before the
]:will work fine, but the other valid
will end with an error about a missing comma because it think that
1]is a string token instead of a number followed by]I'm trying to find a way to solve the issue as it prevent to parse some perfectly valid YAML files.