Tagged Questions

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 : IDE like Eclipse, NetBeans or IntelliJ, Maven and the quality measurement portal Sonar.

learn more… | top users | synonyms

24
votes
14answers
13k views

Checkstyle vs. PMD

We are introducing static analysis tools into the build system for our Java product. We are using Maven2 so Checkstyle and PMD integration come for free. However it looks like there is a large overlap ...
10
votes
2answers
333 views

Allow simple if statement without else to have no braces in codestyle

I use checkstyle to check if my java code respects the guidelines of our project. However, we have one guideline that I cannot figure out how to check with this tool. We want to allow simple if ...
8
votes
1answer
514 views

How can I get checkstyle to skip equals() and hashcode() methods generated by eclipse?

Our project contains several classes that we have equals() and hashCode() methods generated by Eclipse (Right Click -> Source -> Generate hashCode() and equals()). Example: @Override public ...
8
votes
6answers
1k views

Checkstyle for C#?

I'm looking to find something along the lines of Checkstyle for Visual Studio. I've recently started a new gig doing .NET work and realized that coding standards here are a bit lacking. While I'm ...
7
votes
2answers
348 views

Is there a style checker for c++?

I have worked with java for a while now, and I found checkstyle to be very useful. I am starting to work with c++ and I was wondering if there is a style checker with similar functionality. I am ...
7
votes
4answers
1k views

Is there any static code analysis tool like checkstyle for Objective-C?

Checkstyle is a great tool to enforce a code standards for java. We have some projects working with objective-c, and I tried to find some similar tool like checkstyle for Objective-C, but didn't get ...
7
votes
4answers
140 views

Static code analysis for new language. Where to start?

I just been given a new assignment which looks like its going to be an interesting challenge. The customer is wanting a code style checking tool to be developed for their internal (soon to be open ...
7
votes
5answers
7k 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 all checks for a ...
6
votes
1answer
2k views

How to disable a particular checkstyle rule for a particular line of code?

I have a checkstyle validation rule configured in my project, that prohibits to define class methods with more than 3 input parameters. The rule works fine for my classes, but sometimes I have to ...
6
votes
1answer
3k 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?
5
votes
4answers
1k views

Is Sonar Replacement for Checkstyle, PMD, FindBugs?

We are working on a web project from scratch and are looking at the below static code analyzers... conventions (Checkstyle) bad practices (PMD) potential bugs (FindBugs). The project is built on ...
5
votes
2answers
397 views

Is there a static analysis tool like Lint or Perl::Critic for shell scripts?

Are there any shell (specifically bash or ksh) checkers that test shell scripts for style, best practices, naming conventions, etc? (Something like Lint for C, or Perl::Critic for Perl.) I know with ...
5
votes
4answers
3k views

How do I Suppress Warnings in CheckStyle?

I'm using the CheckStyle plugin for Eclipse. It's great at finding things I didn't intend 99% of the time, but the 1% of the time I actually did intent to knowingly violate a rule, I would like to ...
5
votes
1answer
2k views

How to generate an Eclipse formatter configuration from a checkstyle configuration?

I have a checkstyle configuration XML file and want to automatically generate an Eclipse formatter configuration from this. Is there any tool that can do this?
5
votes
3answers
631 views

Do you know of pmd or checkstyle definition files that will enforce hibernate best practices?

For example, not to build queries by string manipulation, and the like.
4
votes
2answers
315 views

Checkstyle equivalent for JSPs?

Is there any tool to do for JSP files what checkstyle does for Java files? The ideal would be to include JSP checking on checkstyle, but as far as I can see, this isn't possible. I would like for ...
4
votes
1answer
880 views

JavaScript code checking beyond JSLint

I'm looking for something that works like Checkstyle for JavaScript. I know about JSLint and I'm already using Google's Closure compiler, but these mostly check for syntactic issues. Checkstyle can ...
4
votes
2answers
9k 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 this error actually ...
4
votes
2answers
2k views

How to define suppressions-definitions for checkstyle, that work with both ant and eclipse

I use in a project checkstyle and I have defined a SuppressionFilter in my checkstyle-configuration. I use Apache ant to make automatic builds via Continuous Integration. My problems comes from the ...
3
votes
2answers
52 views

Checkstyle rule to prevent invocation of some methods and constructors

Is it possible to use Checkstyle to forbid usage of some constructors or method that use system-dependent defaults (locale, charset, etc..). I prefer to enforce a policy where the programmer should ...
3
votes
1answer
207 views

How to export FindBugs/PMD/Checkstyle rules from Sonar and import into Netbeans

My company has sonar set up to with various plugins (PMD, FindBugs, CheckStyle), and although it is very useful as is (it runs after every Jenkins build that was triggered by a check-in to svn), I ...
3
votes
1answer
117 views

Java CheckStyle usage

I'd like to write my own Check using CheckStyle and incorporate this in my ant build.xml. The documentation doesn't seem to provide detailed instructions on how to do so. Does anyone have experience ...
3
votes
7answers
1k views

Empty new line at the end of the java source files

In my current project we always insert empty new line at the end of the java source files (it was enforced by project lead). We also enforce this with checkstyle (with error level). I was searching ...
3
votes
2answers
167 views

Usage of static analysis tools - with Clear Case/Quest

We are in the process of defining our software development process and wanted to get some feed back from the group about this topic. Our team is spread out - US, Canada and India - and I would like ...
3
votes
2answers
792 views

Disable all checkstyle checks for a specific java package

I have two packages namely com/mydomain/abc/delegate/xyz/jaxws/managed and com/mydomain/abc/xyz/jaxws/managed I require checkstyle to be disabled only for the second package as these holds ...
3
votes
2answers
411 views

What does this checkstyle message means?

This is my code (taken from reply posted at SO question): package my; import java.net.MalformedURLException; import java.net.URL; import javax.faces.component.UIComponent; import ...
3
votes
2answers
1k views

How to use maven checkstyle plugin in multi-module project?

This is my parent pom.xml (part of it) in a multi-module project: ... <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> ...
3
votes
2answers
2k views

Disable Checkstyle

I have checkstyle plugin installed in my eclipse. How do I disable check style for a specific project in my workspace? If that is not feasible I would like to turn off checkstyle. Please advice.
3
votes
1answer
1k views

Eclipse Checkstyle with configuration and SuppressionFilter on server

I have configured my Eclipse to use a remote checkstyle configuration that is located on a server, which I reach via HTTP. This works fine, but the configuration contains: <module ...
3
votes
5answers
286 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 ExampleClass { ...
3
votes
7answers
326 views

Detect changing value of object passed as parameter

I'm now working with code that looks like this public String getName(User user) { user.setSth(...); return user.getName(); } I think it's bad practice to change objects passed as ...
3
votes
3answers
2k views

Maven 2 Checkstyle configLocation

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 configuration: ...
3
votes
2answers
416 views

Can the CheckStyle module “NeedBraces” work with nested if/else blocks?

We are using CheckStyle to enforce our style standards. One of the style rules we opted to include was the NeedBraces module. NeedBraces specifies that every block type statement (such as if, else, ...
2
votes
1answer
34 views

Checkstyle/PMD rule for SimpleDateFormat not thread safe warning

Recently I encountered many bugs because of SimpleDateFormat is not thread safe. The reason I found out was it was not synchronized properly or new instances were not created for separate threads. ...
2
votes
1answer
54 views

Several checkstyle reports in jenkins

Is it possible to have several Checkstyle reports in one configuration? Let's say I want to check the code with one set of rules, and tests - with another. After that I have two xml-reports but only ...
2
votes
1answer
67 views

How can I make mvn checkstyle check if all my javadoc comment's contents start with an uppercase?

I'd like to have my checkstyle configured so that it verifies all my javadoc comments start with an upper case letter: /** * Hello Where can I set that up? I think I'll have to enable checkstyle ...
2
votes
1answer
92 views

how to write Custom checks in checkstyle?

I want to write a custom check for checkstyle. my rule that i want to work with is Class should define a constructor- but Suppress this rule for inner classes how should i go about writing this ...
2
votes
2answers
56 views

Java plugin “There is no site selected” Any idea on this?

trying to install checkstyle from : http://eclipse-cs.sourceforge.net/downloads.html when I click help->install software then add checkstyle link I got :There is no site selected so next button is ...
2
votes
1answer
96 views

Eclipse, Checkstyle and spaces in a java doc comment

I have installed the Checkstyle plugin for Eclipse. When i habe writen now a doc comment for a method and there is an empty line line between my acutal comment and the parameter list, like this: /** ...
2
votes
2answers
55 views

Configuring Checkstyle (Java) at a shared location

I have a requirement where I want to configure all rules, suppression, etc. at a shared place and all other users will point to the same location to run the required rules. I have referred to ...
2
votes
1answer
109 views

Preventing Prepared Statement Leaks using Checkstyles

Lets say I have the following code : PreparedStatement ps = null; ResultSet rs = null; try {   ps = conn.createStatement(myQueryString);   rs = ps.executeQuery();   // process the results... } catch ...
2
votes
1answer
136 views

How to write a command line script (not ant task) to generate a checkstyle report?

I got how to write an ant task to generate a report like this but I want to use just a command line script and not ant to generate this. How can I do it?
2
votes
2answers
291 views

In Checkstyle what this error means?

I run checkstyle on my java code , it gives me this error- variable access definition in wrong order. Can somebody tell me what that means? Thanks, Manoj
2
votes
1answer
623 views

Getting Checkstyle custom rule to work in Hudson/Jenkins

I'm having problems trying to get checkstyle to work properly in Hudson/Jenkins. I created a custom checkstyle rule with very minimal rules in it (just to see if it works) and place it in some ...
2
votes
1answer
753 views

Import checkstyle-configuration from sonar into eclipse-checkstyle-plugin

I want to export checkstyle rules from sonar and import them into the checkstyle eclipse plugin. Unfortunately sonar exports the checkstyle rules to a csv file. But the checkstyle plugin only accepts ...
2
votes
2answers
138 views

Checkstyle for ColdFusion?

Is there some kind of Checkstyle plug-in for Eclipse available for ColdFusion.
2
votes
6answers
226 views

Should I always use the private access modifier for class fields?

Currently we are running checkstyle on our code base and it flags up any non-static class fields that don't use the private access modifier. Is this a valid checkstyle rule, or are there situations ...
2
votes
1answer
131 views

Is there a way for a Maven project to inherit report configurations from a pom dependency?

I know that it's possible to configure the section in a parent POM and have it apply to the sub-modules in a multi-module project. However, I'd like to have a separate POM to reference as a ...
2
votes
8answers
680 views

Default constructor is good or evil? Checkstyle and PMD are opposite here

Checkstyle says: Class should define a constructor. PMD says: Avoid unnecessary constructors - the compiler will generate these for you. Who is right? Or let's put it this way - what are the ...
2
votes
2answers
648 views

maven eclipse checkstyle plugin

I have custom checkstyle checks file (called checks.xml), and I'm trying to use that same file in both maven and eclipse. It all works well, except for the SuppressionFilter. In this checks.xml file, ...

1 2 3 4