0
votes
1answer
68 views
Can I disable CheckStyle complaints for deprecated methods and classes?
I'm maintaining an API that has deprecated some public static fields.
CheckStyle complains loudly about these but I'd rather have it ignore them completely since I've dealt with …
0
votes
1answer
31 views
Is there a way to force Checkstyle to ignore particular warning in the source code?
PMD has a way to ignore particular warning with //NOPMDcomment inside Java source file.
Does Checkstyle have similar option?
3
votes
5answers
41 views
Should the RequireThis check in Checkstyle be enabled?
One of the built-in Checkstyle checks is RequireThis, which will go off whenever you don't prepend this. to local field or method invocations. For example,
public final class Exa …
0
votes
0answers
87 views
problem installing Checkstyle on Eclipse 3.5
I'm having trouble installing the Checkstyle plugin on Eclipse platform 3.5, Java EE IDE 1.2. I've pasted the error message below when I try to install Checkstyle. Thanks in adva …
1
vote
4answers
102 views
Cleaning up code breaks binary compatibility
I'm working on a project which is being used by a number of people I don't know. We've done a fairly good job of bringing down the CheckStyle warnings and the thing is about a low …
1
vote
1answer
139 views
How do you translate from checkstyle.xml to eclipse code style format/profile and back again?
I have eclipse code formatter and profile xml docs and I'd like to build a checkstyle.xml which I can use in my maven builds to run reports and generate the eclipse files. maven- …
1
vote
1answer
31 views
Checkstyle source control intergration
I've been looking into checkstyle recently as part of some research into standard coding conventions. Though it seems like it is perfectly suitable for brand new projects, it seem …
0
votes
0answers
56 views
JavadocPackage usage in checkstyle
Hi all,
I am in the process of converting my checkstyle version 4.0 configurations to version 5.0. Hence, I have added the following to replace older "PackageHtml",
<module na …
0
votes
5answers
102 views
How can I automatically validate that I have an HTML Id on every element?
The testers on my project want a unique HTML ID on every page element to make their automated testing easier.
It's hard for me to remember to do this, because I don't need the IDs …
0
votes
7answers
296 views
Best coding Style - Checking if a character is a valid character [closed]
I am coding a method that returns whether a given character is valid, which looks like this: -
private static boolean isValid(char c) {
return c == '.' || c == ',' || c == '+' …
1
vote
1answer
785 views
Checkstyle Error in Eclipse - Could not instantiate Tab character
Got this error today while trying to build a project with checkstyle. This works for other people in my office but I would rather not reinstall Eclipse yet again. Any idea what thi …
2
votes
3answers
474 views
Maven 2 Checkstyle configLocation
Hi,
i have a project which has as maven dependency a jar file which includes a xml file where i stored my rules for checkstyle. I thought it would be ok to just use this configura …
0
votes
3answers
1k views
Problems occurred when invoking code from plug-in: “org.eclipse.jface” when using Checkstyle Plugin
Hi guys,
I am trying to use the eclipse-cs plugin on Rational Software Architect 7.0.0.4.
I recently uninstalled the older beta2 version and installed beta3. The plug-in itself w …
0
votes
1answer
94 views
Checkstyle for XML, text, properties file formats
Can checkstyle be configured to check xml, text, properties file formats. I have a requirment wherein I need to check for certain keywords in java, xml, text etc. file formats. For …
2
votes
5answers
545 views
How do I suppress all checks for a file in checkstyle?
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 a …
