-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtaplo.toml
19 lines (19 loc) · 1.69 KB
/
taplo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[formatting]
align_entries = false # Align entries vertically. Entries that have table headers, comments, or blank lines between them are not aligned. false
align_comments = true # Align consecutive comments after entries and items vertically. This applies to comments that are after entries or array items. true
array_trailing_comma = true # Put trailing commas for multiline arrays. true
array_auto_expand = false # Automatically expand arrays to multiple lines true
array_auto_collapse = false # Automatically collapse arrays if they fit in one line. true
compact_arrays = true # Omit whitespace padding inside single-line arrays. true
compact_inline_tables = false # Omit whitespace padding inside inline tables. false
inline_table_expand = true # Expand values (e.g. arrays) inside inline tables. true
compact_entries = false # Omit whitespace around =. false
column_width = 80 # Target maximum column width after which arrays are expanded into new lines. 80
indent_tables = false # Indent subtables if they come in order. false
indent_entries = false # Indent entries under tables. false
indent_string = " " # Indentation to use, should be tabs or spaces but technically could be anything. 2 spaces (" ")
trailing_newline = true # Add trailing newline to the source. true
reorder_keys = false # Alphabetically reorder keys that are not separated by blank lines. false
reorder_arrays = false # Alphabetically reorder array values that are not separated by blank lines. false
allowed_blank_lines = 2 # The maximum amount of consecutive blank lines allowed. 2
crlf = false # Use CRLF line endings. false