TOMLBeautyConfig

Members

Static variables

full
TOMLBeautyConfig full;

Uses proper tables inside arrays, two space indent for nested structs, adds spaces around equals, enabled decimal thousands separator at 5 digits, enabled binary octet separators, arrays are multi-line

indentedTables
TOMLBeautyConfig indentedTables;

Uses proper tables inside arrays, 2-space struct indent, adds spaces around equals, no number separators, arrays are single line

minify
TOMLBeautyConfig minify;

Uses inline tables inside arrays, no nested struct indent, no spaces around equals signs, no number separators, arrays are single line

nestedTables
TOMLBeautyConfig nestedTables;

Uses proper tables inside arrays, no nested struct indent, adds spaces around equals, no number separators, arrays are single line

none
TOMLBeautyConfig none;

Uses inline tables inside arrays, no nested struct indent, adds spaces around equals signs, no number separators, arrays are single line

numbers
TOMLBeautyConfig numbers;

Uses inline tables inside arrays, no nested struct indent, adds spaces around equals signs, enabled decimal thousands separator at 5 digits, enabled binary octet separators, arrays are single line

Variables

arrayIndent
string arrayIndent;
Undocumented in source.
arrayTrailingComma
bool arrayTrailingComma;
Undocumented in source.
binaryOctetSeparator
bool binaryOctetSeparator;
Undocumented in source.
decimalThousandsSeparatorThreshold
int decimalThousandsSeparatorThreshold;

After how many decimal places to start putting thousands separators (_) or 0 to disable.

endOfFileNewline
bool endOfFileNewline;
Undocumented in source.
fullTablesInArrays
bool fullTablesInArrays;
Undocumented in source.
hexWordSeparator
bool hexWordSeparator;
Undocumented in source.
multilineStringIndent
string multilineStringIndent;
Undocumented in source.
spaceAroundEquals
bool spaceAroundEquals;
Undocumented in source.
structIndent
string structIndent;
Undocumented in source.

Meta