Open
Description
Following flow sequences will not be parsed correctly:
test: [
]
---
test: [
a, b, c
]
They need to have a significant whitespace before the closing ]
symbol in order to parse correctly.
test: [
]
---
test: [
a, b, c
]
The issue has been reported to grammar author: ikatyang/tree-sitter-yaml#29