Skip to content

Commit bb7fbff

Browse files
committed
Enforce API documentation
Currently almost nobody documents added functions which is not good for the users of this library - but the API must have documentation. Let's warn about missing docs (deny would be even better).
1 parent 1e9731f commit bb7fbff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ rust-version = "1.70.0"
1515
[lints.rust]
1616
rust_2018_idioms = { level = "warn", priority = -1 }
1717
unreachable_pub = "warn"
18-
# TODO: missing_docs = "warn"
18+
missing_docs = "warn"
1919
unexpected_cfgs = "allow" # for `docsrs`
2020

2121
[lints.clippy]

0 commit comments

Comments
 (0)