Checkstyle is a static analysis tool for checking code compliance to standards. It can be configured with various sets of coding standards. Checkstyle provides checks that find class design problems, duplicate code, or bug patterns like double checked locking. It is integrated in various other tools ...
4
votes
1answer
35 views
Make checkstyle require the Java 7 Diamond operator
Is it possible to make checkstyle require java 7 formatting of the diamond operator? I want to ensure my codebase consistently uses the new Java 7 style, i.e.:
List<String> items = new ...
0
votes
0answers
15 views
Checkstyle Issues in Build
I am having trouble with adding checkstyle to my build file. I have been attempting to follow the tutorial at http://checkstyle.sourceforge.net/anttask.html as well as look at examples of code that ...
0
votes
2answers
40 views
Use checkstyle to require space on either side of equals
How do you set checkstyle to enforce the following:
int i = 0;
if(i == 0) {
// do something
}
if(i > 0) {
// do something
}
instead of:
int i=0;
if(i==0) {
// do something
}
...
1
vote
2answers
40 views
WhitespaceAfter conflict with GenericWhitespace
I am using both of the above checks. Is there a way to make it so WhitespaceAfter forces space after commas, EXCEPT when it is in generics? ie I want this to be valid.
public void function(String a, ...
0
votes
2answers
40 views
Restriction on J2SE inbuilt method
As per my company rule I can not use stop() of thread
For that I want something like when I use stop(), eclipse should shows error/warning
It is difficult to achieve by using checkstyle and PMD.
2
votes
1answer
33 views
Allowed HTML tags in Javadoc
The Checkstyle rule JavadocStyle does not allow the tag <u>. According to the docs, the checks were patterned after the checks made by the DocCheck doclet available from Sun. Unfortunately, I ...
2
votes
1answer
36 views
Findbugs, PMD or Checkstyle rule to find access by a field
I have a class caches a set of values internally. These values can be updated periodically and the cached contents will be updated appropriately. As long as users of this class do something like:
...
4
votes
4answers
97 views
Is there a better way to search for arbitrary values in this list?
I need to do this , check for an import of java.sql.PreparedStatement , i have the parsing tree that contains the import statements on that list and i want to check it , the code alredy works , but it ...
0
votes
0answers
22 views
Does anybody have a checkstyle config file for c++? [closed]
A few of the checkstyle plugins work for c++.
Is somebody using them? What should the config file contain?
thanks
1
vote
1answer
50 views
Checkstyle rule to limit interactions between root packages (with ImportControl?)
How can I create a Checkstyle rule to limit interactions between different root packages?
I have the following 3 root packages:
models
views
controllers
(They are not something like ...
0
votes
0answers
31 views
How to obtain the output of maven3 project?
I am a novice as far as Jenkins, so if my question is foolish, please forgive me.
First, I create a project of maven3 on Jenkins, then run build (mvn clean install; mvn sonar:sonar). Luckily, it works ...
1
vote
1answer
36 views
How to create CheckStyle Check for validating Annotation Fields
@WebService(serviceName="TestImpl",
targetNamespace = "http://example.org"
)
public class TestImpl implements Test{
If my Test class is something like above my check should verify if the ...
1
vote
2answers
74 views
Using JSP Custom Rule in PMD
I need a kind of validation to use on Sonar, which should look over JSF elements in XHTML pages verifying if the input elements contains ID attribute. (example: )
Initially I'm trying to do it using ...
1
vote
0answers
43 views
Checkstyle in Jenkins - NoSuchMethodError
I am trying to get checkstyle to work in jenkins. In maven alone, everything runs smoothly, but when I run the checkstyle:checkstyle target in jenkins, the follwong error apperas:
mojoSucceeded ...
4
votes
1answer
73 views
Bad code style deemed failure by Jenkins/checkstyle
I'm using Jenkins to test a Java software project (using the play web framework but that shouldn't really matter).
Part of the test is about code style, for which I use checkstyle. I tried to set up ...
2
votes
2answers
57 views
Eclipse Checkstyle Disable “Lline has trailing spaces”
I'm using eclipse on Win 7. I'm also using checkstyle and find that checkstyle is complaining about trailing white space in comments.
I wish to disable this check in checkstyle, not make any ...
0
votes
1answer
38 views
Java Eclipse CheckStyle Shortcut Key for Apply Checkstyle Fixes
I used check style in the past and remember using a shortcut key to apply the check style fixes (saves a lot of clicking). I can't remember if I set up a shortcut for it, or if it came with one ...
0
votes
2answers
49 views
Java Main Method Magic Numbers
So im trying to get rid of two magic numbers that i have in my main method. I tried making them static fields but i just get a different checkstyle error. I'm looking for a way to make my main method ...
0
votes
1answer
108 views
maven checkstyle plugin and guava / google-collections dependency clash
In our multiple module maven (3) project we are utilising the maven checkstyle plugin. It looks like that since we've shifted the guava dependency to our parent pom, we can't execute successfully the ...
3
votes
3answers
86 views
How can I enforce documentation in Java code?
What options are there for enforcing that code is documented? I want something that will run as part of the build process e.g. a maven target that will check that code is documented (class level and ...
0
votes
1answer
53 views
sonar-maven3-plugin to analyze a multi-language project using a customer checkstyle file
My project has a .checkstyle file created using Eclipse that references a checkstyle file held at a svn url. Below is an example of how the file is referencing the external URL:
...
2
votes
1answer
58 views
How to remove default checkstyle in eclipse?
I have a custom checkstyle.xml imported and set as the default. It works great. I just upgraded to the newest version of checkstyle and now I have a warning on just about every line of code. It ...
6
votes
1answer
301 views
CheckStyle checks not been ignored
I have set up my checkstyle checks in my pom.xml as follows
<reporting>
<plugins>
<plugin>
...
0
votes
1answer
21 views
Set a default checkstyle profile automatically
I'm configuring an Eclipseinstallation for a large number of users and want to configure it as complete as possible.
Its Eclipse 3.7 and I have checkstyle 5.6 installed, I've also created a plugin ...
1
vote
1answer
82 views
configure checkstyle to ignore an empty catch block
in my team we use checkstyle to improve our coding standards, but now we came across a rule which could be improved.
The Empty Block rule gives us a warning about an empty catch block (without java ...
0
votes
0answers
63 views
maven checkstyle plugin: how to get an html report and fail build at the same time?
I'm using checkstyle maven plugin.
I want my build to fail in case of any checkstyle errors.
The problem is that if I'm setting failOnError to true I won't have an html report when it fails!
How it ...
0
votes
1answer
46 views
checking tool for spelling and javadoc validation
apologies if the question is a duplicate.
Actually I am looking for a automated checking tool to identify:
the missing javadoc,
incomplete javadoc or
missing brief
test and identify spelling or ...
2
votes
3answers
97 views
Most simple javadoc documentation for a derived exception regarding checkstyle SUN convention?
I create a lot of exception classes, extending "Exception" and creating all constructors matching the constructors of the superclass "Exception". Eclipse generates this:
/**
*
*/
package ...
0
votes
1answer
177 views
Can't Install Eclipse Juno CheckStyle Plugin
I heard that a good plugin for metrics for Java Eclipse was the CheckStyle plugin. So I try and follow their instructions on how to install it, but I keep getting the following:
Can someone kindly ...
7
votes
1answer
183 views
Verify that Java classes implement toString()
As a part of the regular static analysis of my program, I would like to check that classes are likely to have sane toString() methods. Probably not that every class implements them, but perhaps that ...
0
votes
2answers
41 views
Checkstyle working differently for same condition
On applying check style i am getting " hides a field" if the name of formal and actual parameters are same.
private String limitedDimensionId;
/**
* Sets the limited dimension id.
*
* @param ...
0
votes
3answers
68 views
Checkstyle on class variable
Check style says that for a private class variable "must be declared final".
class Test {
private int x=1;
public void set(int x) {
this.x = x;
}
}
In the above case it calls ...
0
votes
1answer
53 views
how to make checkstyle ignore xml files in my application
i've configured my checkstyle plugin with customized checkstyle.xml and it works fine with the java classes but having a lot of warnings with the xml files can anyone suggest how to disable the check ...
1
vote
1answer
138 views
Java's checkstyle, MagicNumberCheck
I am using checkstyle¹ to get reportings about my source-code. This question is about the MagicNumberCheck².
I am using Date/(org.joda.)DateTime in my source code like this³:
DateTime dateTime = new ...
2
votes
1answer
182 views
Java checkstyle - constructor definition in wrong order
I have a class that looks like this:
public final class OrderedSetList<T extends Comparable<? super T>> implements OrderedSet<T> {
// Constructor definition in wrong order ...
0
votes
1answer
77 views
Checkstyle length check for import statements
How to remove checkstyle violation if it throws a "Line is longer than 80 characters" for an import statement?
0
votes
0answers
13 views
Domino designer database can't checked because checkstyle builder run java
Domino designer checkStyle is not working:
given error:
test.nsf can't checked because checkstyle builder run java
1
vote
2answers
69 views
How to check for Java class member order
We're are using PMD and Checkstyle (from developers IDE and central CI server) to check code to our coding conventions.
I was expecting for these tools to provide a rule that checks for class members ...
0
votes
0answers
41 views
i want to disable the check style warning only for xml files
I've make anew check style configuration file and it works fine with java classes, but now I'm facing a problem with the XML files as all the lines have warning, and this is annoying me, can anyone ...
1
vote
0answers
37 views
Is it possible to extend checkstyle architecture for other languages?
I am looking for static code anaylyzer for some SQL scripts written. I was interested in having a tool that can be extended with my own set of rules.
For static code analysis I see lot of tools for ...
0
votes
0answers
22 views
Was the FileTypesFilter deprecated in eclipse-cs 5.6 plugin?
I recently noticed that my checkstyle configuration which I thought used to only check .java files was no longer doing so:
<?xml version="1.0" encoding="UTF-8"?>
<fileset-config ...
7
votes
1answer
71 views
Generate warnings for autoboxing use
I would like to generate warnings for ALL autoboxing and unboxing.
Has anyone found an effective way?
Eclipse catches basic autoboxing errors: eg. Integer i = null; i++. But fails on anything ...
1
vote
0answers
23 views
Configure checkstyle for method chaining?
Our project contains many statements in the method chaining fluent style:
int totalCount = ((Number) em
.createQuery("select count(up) from UserPermission up where " +
...
0
votes
2answers
278 views
Share specific PMD rulesets across multi module maven project
I'm trying to share the same pmd configuration across all my submodules. I'm looking for the best way to achieve that
I thought that I could place it in the parent project, like I did it for ...
0
votes
0answers
58 views
Style data is missing for html report of checkstyle maven plugin
I want to set up checkstyle plugin for maven to check the style of the code.
And seems it's not as easy as I expected.
The problem I faced is that when I'm running mvn checkstyle:checkstyle it ...
1
vote
1answer
68 views
Checkstyle differs from normal Java on naming convention for final variables?
For a private final variable, Checkstyle is recommending a name that matches '^[a-z][a-zA-Z0-9]*$'. Shouldn't final variables be all caps?
e.g. Checkstyle wants test, tEST, or testTest.
Isn't the ...
0
votes
4answers
306 views
Checkstyle and Jenkins: check modified/added lines in SVN commit
We have big-old Java project with a lot of legacy code. Now we have code conventions and Checkstyle rules to check it.
We want to configure Jenkins job, which runs after every commit to SVN, to ...
0
votes
1answer
137 views
Does check style 80 character rule still making sense today? [closed]
I have recently started doing some Java and one of the Maven checkstyle plugin is pissing me off, specially the 80 chars per line rule !
"Line is longer than 80 characters!"
I have managed to fix ...
3
votes
2answers
478 views
Eclipse sonar plugin vs findbugs+pmd+checkstyle eclipe plugins
We are trying to install a CI Platform with (Jenkins,sonar,eclipse ...).
So that every developer can make analysis on his code before commit, I'm wondering between two alternatives :
running local ...
3
votes
3answers
80 views
Automatically add “this.” to instance variables
We have started to implement checkstyle as a way to provide a consistent code style across developers. One of the checks requires that all instance variables be references using "this.". I have not ...




