forked from zeroclaw-labs/zeroclaw
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtaplo.toml
More file actions
30 lines (27 loc) · 852 Bytes
/
taplo.toml
File metadata and controls
30 lines (27 loc) · 852 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Taplo configuration for TOML formatting
# https://taplo.tamasfe.dev/configuration/
[formatting]
# Align consecutive entries vertically
align_entries = false
# Align consecutive comments vertically
align_comments = true
# Align consecutive single-line array elements
align_single_comments = true
# Use CRLF line endings (overrides line-ending option)
crlf = false
# Use implicit array trailing newlines
implicit_array_newline = false
# Use implicit table trailing newlines
implicit_table_newline = false
# Indentation to use (number of spaces)
indent_string = " "
# Add trailing newline to the source
trailing_newline = true
# Add trailing whitespace to the source
trailing_whitespace = false
[[rule]]
# Keys that should be sorted
keys = ["dependencies", "dev-dependencies", "features"]
[rule.formatting]
# Sort array values
reorder_arrays = true