I came across this project while doing my research on the topic.
I've noticed that even obviously invalid ini files will be silently parsed with incorrect meaning. Wondering if this is by design.
Please find examples below.
# unclosed quoted literal
foo = "bar
# unclosed section
[core
spam = eggs
Parsed into the following data with errors (are they?) silently skipped.
{
"foo": "\"bar",
"[core": true,
"spam": "eggs"
}
I came across this project while doing my research on the topic.
I've noticed that even obviously invalid ini files will be silently parsed with incorrect meaning. Wondering if this is by design.
Please find examples below.
Parsed into the following data with errors (are they?) silently skipped.
{ "foo": "\"bar", "[core": true, "spam": "eggs" }