- Which INI flavor is supported?
- The common subset: [section] headers, key=value pairs, # and ; comments. Windows-style and POSIX-style both work.
- How are sections mapped?
- Each [section] becomes a top-level JSON object. Keys within the section become its properties. `[section.subsection]` becomes nested objects with dot notation.
- What about duplicate keys?
- Last-wins (matches most INI parser defaults). Toggle 'collect duplicates as array' if you need to preserve multiple values per key.
- Does it handle type inference?
- Yes — booleans (true/false, yes/no, on/off), numbers, and null strings are converted. Quoted strings keep string type.