-
-
Notifications
You must be signed in to change notification settings - Fork 153
Open
Description
I have the following taplo.toml file:
include = ["**/*.toml"]
[formatting]
reorder_arrays = true
[[rule]]
include = ["bar.toml"]
keys = ["baz"]
[rule.formatting]
reorder_arrays = falseI would assume that the rule listed would prevent the array baz from being re-ordered, but still allow for all other arrays to be sorted.
This is my bar.toml file:
baz = ["foo", "bar", "baz"]
sort_me = ["z", "a"]However, when running taplo fmt, bar.toml ends up like this:
baz = ["bar", "baz", "foo"]
sort_me = ["a", "z"]As you can see, all arrays were sorted. When omitting keys, nothing gets formatted, which is not what I want.
jonasbb, ejpcmac, lukaszmoroz and rmburg
Metadata
Metadata
Assignees
Labels
No labels