@ac-essentials/misc-util
    Preparing search index...

    Type Alias IniFileFormatOptions

    IniFileFormatOptions: TextFileFormatOptions & {
        alignAssignments?: boolean;
        assignmentSpaces?: boolean;
        bracketedArray?: boolean;
        sectionIdentifier?: string;
        sectionNewline?: boolean;
        sort?: boolean;
    }

    Type Declaration

    • OptionalalignAssignments?: boolean

      Whether to align equal signs in the INI file.

      Defaults to false.

    • OptionalassignmentSpaces?: boolean

      Whether the INI file has spaces around the equal signs.

      Defaults to false.

    • OptionalbracketedArray?: boolean

      Whether to append [] to array keys.

      Defaults to true.

    • OptionalsectionIdentifier?: string

      Identifier to use for global items and to prepend to all other sections.

      Defaults to #.

    • OptionalsectionNewline?: boolean

      Whether to insert a newline after each section header.

      Defaults to false.

    • Optionalsort?: boolean

      Whether to sort sections and keys alphabetically.

      Defaults to false.