Exclude single methods from feedback eg. by adding an attribute on top of them:
[ForceFeedbackProgramming(Check=false)]
public void Do_sth(...) {
//...
}
Such exclusions could be useful during a refactoring, to work without being hampered. Or really dirty methods could be excluded.