rust/tests
Yutaro Ohno 4693d0a9ff Add new lint doc_overindented_list_items
Add a new lint `doc_overindented_list_items` to detect and fix list items
in docs that are overindented.

For example,

```rs
/// - first line
///      second line
fn foo() {}
```

this would be fixed to:

```rs
/// - first line
///   second line
fn foo() {}
```

This lint improves readabiliy and consistency in doc.
2025-01-28 16:22:28 +09:00
..
test_utils
ui Add new lint doc_overindented_list_items 2025-01-28 16:22:28 +09:00
ui-cargo
ui-internal Merge remote-tracking branch 'upstream/master' into rustup 2025-01-09 18:00:37 +01:00
ui-toml Merge remote-tracking branch 'upstream/master' into rustup 2025-01-09 18:00:37 +01:00
workspace_test
check-fmt.rs
clippy.toml
compile-test.rs In edition 2024, std::env::set_var is unsafe 2025-01-13 15:58:11 +01:00
config-metadata.rs
dogfood.rs
headers.rs
integration.rs
lint_message_convention.rs
missing-test-files.rs Apply unnecessary_semicolon to Clippy sources 2025-01-19 15:34:07 +01:00
versioncheck.rs Apply unnecessary_semicolon to Clippy sources 2025-01-19 15:34:07 +01:00
workspace.rs