Can't Ignore Missing Documentation For Public Module

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

Hey there!

I can’t seem to reproduce this.
Here’s a check without the skipcq, raising issue:

And here’s the check after adding the skipcq pragma. No issue was raised here.

Ref: Commit adding skipcq.

Weird then… Perhaps its a bug regarding the space count? Because on my instance, it clearly happens even if its written correctly

Yours is two spaces, while mine is only one. So could be that?

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