I'm doing an override for a third party class and I want to suppress all checks for it (since I'm only keeping it around until the patch is accepted).
Is there a way to suppress all checks for a file?
I tried using "*" but that fails.
|
|
I'm doing an override for a third party class and I want to suppress all checks for it (since I'm only keeping it around until the patch is accepted). Is there a way to suppress all checks for a file? I tried using "*" but that fails.
|
||
|
|
|
|
Don't know whether you're using command line or in an IDE, but you'll basically need a suppresions file. If you're manually editing the Checkstyle config file, add a new module to it:
Your
The value for " |
||||
|
|
|
I was able to suppress the checks in a file br adding the SuppressionCommentFilter tag in my checks.xml: First I added the FileContentHolder tag as a child of TreeWalker tag:
Then I added the SuppressionCommentFilter in the checks.xml:
In each file that I wanted to suppress the checks I inserted the following comment in the first line of the file:
|
||
|
|
|
|
If you wish to not have a group of files within a project inspected, you can filter these files out so they are not inspected by creating a file filter The file filter uses regex to determine what files to exclude. The regex operates on the complete file name - because of this, you could also exclude whole folders. In this case you could exclude the whole package if you wished. If you google around a bit - you could probably find some Checkstyle Configuration Propertie files that have examples of what you're looking for. I would suggest after you do so - save it as a bit of a template so you can refer to it in future situations |
||
|
|
|
|
If you're using the Checkclipse Eclipse plugin for Checkstyle, you can include or exclude file patterns (including directories) by going to the Checkclipse > File Filter tab under project properties. For example, my project contains src and test directories at the top level. I want Checkstyle applied to only files in the src directory (omitting test), so I added an include pattern that looks like this:
As you can see, it uses a regex-style syntax for pattern specification. |
||
|
|
|
|
There is an option to ignore write protected files. Or files in a package. |
||||
|