-
Notifications
You must be signed in to change notification settings - Fork 70
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
why SuppressWarningsFilter and SuppressionCommentFilter are default filters ? #98
Comments
Do you propose to make default as nothing (empty string) ? |
I did. |
has been moved into #99 - closing this one. |
When I define one rule in a sonar profile, like
Indentation
, the following configuration is created:The addition of the default filters
SuppressWarningsFilter
andSuppressionCommentFilter
were unexpected and were causing issues for me.SuppressWarningsFilter
by default will hide any violations whenSuppressWarnings
is used with it. I had addedSuppressWarnings
annotations for other tests.So I can't get violations in the following java file unless
SuppressWarningsFilter
is removed:The text was updated successfully, but these errors were encountered: