mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
26 lines
1.2 KiB
Plaintext
26 lines
1.2 KiB
Plaintext
Available passes for running rustdoc:
|
|
check_doc_test_visibility - run various visibility-related lints on doctests
|
|
strip-hidden - strips all `#[doc(hidden)]` items from the output
|
|
strip-private - strips all private items from a crate which cannot be seen externally, implies strip-priv-imports
|
|
strip-priv-imports - strips all private import statements (`use`, `extern crate`) from a crate
|
|
propagate-doc-cfg - propagates `#[doc(cfg(...))]` to child items
|
|
collect-intra-doc-links - resolves intra-doc links
|
|
collect-trait-impls - retrieves trait impls for items in the crate
|
|
calculate-doc-coverage - counts the number of items with and without documentation
|
|
run-lints - runs some of rustdoc's lints
|
|
|
|
Default passes for rustdoc:
|
|
collect-trait-impls
|
|
check_doc_test_visibility
|
|
strip-hidden (when not --document-hidden-items)
|
|
strip-private (when not --document-private-items)
|
|
strip-priv-imports (when --document-private-items)
|
|
collect-intra-doc-links
|
|
propagate-doc-cfg
|
|
run-lints
|
|
|
|
Passes run with `--show-coverage`:
|
|
strip-hidden (when not --document-hidden-items)
|
|
strip-private (when not --document-private-items)
|
|
calculate-doc-coverage
|