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 4269f18 commit c317121Copy full SHA for c317121
.github/workflows/spellcheck.yml
@@ -17,6 +17,8 @@ jobs:
17
~/.cargo/.crates2.json
18
~/.cargo/bin/cargo-spellcheck
19
key: cargo-spellcheck
20
+ - name: Install libclang-dev
21
+ run: sudo apt-get install libclang-dev
22
- name: Install cargo-spellcheck
23
run: cargo install cargo-spellcheck --locked
24
- name: Checkout
src/lib.rs
@@ -2,7 +2,7 @@
2
#![cfg_attr(feature = "nightly", feature(allow_internal_unstable))]
3
#![allow(clippy::tabs_in_doc_comments)]
4
#![warn(clippy::cargo, clippy::missing_docs_in_private_items)]
5
-#![cfg_attr(doc, warn(rustdoc::all), allow(rustdoc::missing_doc_code_examples))]
+#![cfg_attr(doc, allow(unknown_lints), warn(rustdoc::all))]
6
7
//! # Description
8
//!
0 commit comments