I'm running nim devel.
I know how to disable one specific Hint or Warning.
The problem is I'm getting many-many warnings and hints, all coming from the Nim libraries (that is: NOT from my code). Is there any way I can disable only these warnings? (So, that I can spot if there is something that is my fault and thus fixable)
you can
{.push hints:off.}
import foo
{.pop.}
to disable hints for a particular library, I'm on mobile so can't test but maybe you could do the reverse, compile with --hints: off and {.push hints:on.} for one too