I am trying to ignore an issue for undocumented modules (not entirely disable the issue), its quite teadious, i tried multiple ways of disabling, like so:
#[allow(missing_docs)]
pub mod ephemeral; // skipcq: RS-D1001
For some reason none of them worked out, did i do something wrong? I’ve read the deepsource documentation, i copied paste the exact words in case i mistyped, but no, no change
Turns out from my findings, it has to do with #[allow(missing_docs]) and almost certain the space count matters, as adding 2 spaces and then removing the #[allow(missing_docs)] fully resolves the issue