We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d61d559 commit 971c7daCopy full SHA for 971c7da
src/main.rs
@@ -1,5 +1,5 @@
1
#![forbid(unsafe_code)]
2
-#![deny(clippy::all)]
+#![deny(clippy::all, clippy::collection_is_never_read)]
3
#![warn(clippy::pedantic, clippy::nursery)]
4
5
use std::fs::File;
@@ -105,9 +105,10 @@ impl PreProcessor for LinkOrInclude {
105
ret
106
};
107
108
+ pasting_text.push_str(&including_text);
109
pasting_text.push_str("\n</details>");
110
- including_text
111
+ pasting_text
112
}
113
BuildMode::Static => {
114
let mut cloned_path = build_context.input_file.to_path_buf();
0 commit comments