I’ve tried a couple of times to use skipqc for intentional stuff that’s being marked as issue, but DeepSource seems to just ignore it.
The only examples I could find on how to signal it was for python code, so I adopted it for java in this way:
private void someMethod(int x) { //skipqc: JAVA-xxxx
...
}
or by adding it above:
//skipqc: JAVA-xxxx
doSomeStuffHere();
but both of these keep showing up when merging new code into those classes, which is really inconvenient.
Any guidance you guys can give me?