Auto merge of #13177 - GuillaumeGomez:fix-broken-list-lints-config, r=xFrednet
Fix broken list for lints config Follow-up of #13166. Finally figured out that it was a transformation and not the source that was the problem. It now looks like this: ![Screenshot from 2024-07-29 16-29-10](https://github.com/user-attachments/assets/4b89b3fe-8f85-47b8-8d9a-505badeaeac4) r? `@xFrednet` changelog: none
This commit is contained in:
commit
ea06fa326d
@ -684,6 +684,11 @@ fn cleanup_docs(docs_collection: &Vec<String>) -> String {
|
|||||||
.find(|&s| !matches!(s, "" | "ignore" | "no_run" | "should_panic"))
|
.find(|&s| !matches!(s, "" | "ignore" | "no_run" | "should_panic"))
|
||||||
// if no language is present, fill in "rust"
|
// if no language is present, fill in "rust"
|
||||||
.unwrap_or("rust");
|
.unwrap_or("rust");
|
||||||
|
let len_diff = line.len() - line.trim_start().len();
|
||||||
|
if len_diff != 0 {
|
||||||
|
// We put back the indentation.
|
||||||
|
docs.push_str(&line[..len_diff]);
|
||||||
|
}
|
||||||
docs.push_str("```");
|
docs.push_str("```");
|
||||||
docs.push_str(lang);
|
docs.push_str(lang);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user