Update all filters documentation and javadoc to mention that accept() that return true means violation will be in report
It was confusion for a while. but here was last drop https://github.com/checkstyle/checkstyle/pull/21570#discussion_r4032531547
We have a lot of filters https://checkstyle.org/filters/index.html , here is single : https://checkstyle.org/filters/severitymatchfilter.html
Filter SeverityMatchFilter decides audit events according to the severity level of the event.
severity Specify the severity level of this filter.
acceptOnMatch Control whether the filter accepts an audit event if and only if there is a match between the event's severity level and property severity. If acceptOnMatch is false, then the filter accepts an audit event if and only if there is not a match between the event's severity level and property severity.
accept means violation will be in report.
We need to update all javadoc and xdoc(that will be in html) to mention this, as users need to know what to know what to do to make violation disappear from final report.
Source: checkstyle/checkstyle