fix: fix rustdocs-args ordering in taplo to -D warnings

This fixes the current rustdoc build error by correcting the ordering of
`rustdoc-args` to `-D warnings`. Additionally, this also removes the
`recorder_arrays` field (defaults to false) so that the order is not
modified, which is what caused the error in the first place.
reviewable/pr964/r1
tyrone-wu 4 months ago committed by Michal Rostecki
parent 0ec87f6e4f
commit 5e13283f59

@ -2,4 +2,3 @@
[rule.formatting] [rule.formatting]
indent_string = " " indent_string = " "
reorder_arrays = true

@ -35,4 +35,4 @@ async_std = ["dep:async-io"]
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true
rustdoc-args = ["--cfg", "-D", "docsrs", "warnings"] rustdoc-args = ["--cfg", "docsrs", "-D", "warnings"]

Loading…
Cancel
Save