Since Checkstyle 3.2
Rationale: Classes that live in the null package cannot be imported. Many novice developers are not aware of this.
Packages provide logical namespace to classes and should be stored in the form of directory levels to provide physical grouping to your classes. These directories are added to the classpath so that your classes are visible to JVM when it runs the code.
name | description | type | default value | since |
---|---|---|---|---|
matchDirectoryStructure | Control whether to check for directory and package name match. | boolean | true |
7.6.1 |
To configure the check:
<module name="Checker"> <module name="TreeWalker"> <module name="PackageDeclaration"/> </module> </module>
Let us consider the class AnnotationLocationCheck which is in the directory /com/puppycrawl/tools/checkstyle/checks/annotations/
package com.puppycrawl.tools.checkstyle.checks; //Violation public class AnnotationLocationCheck extends AbstractCheck { //... }
Example of how the check works when matchDirectoryStructure option is set to false. Let us again consider the AnnotationLocationCheck class located at directory /com/puppycrawl/tools/checkstyle/checks/annotations/ along with the following setup,
<module name="Checker"> <module name="TreeWalker"> <module name="PackageDeclaration"> <property name="matchDirectoryStructure" value="false"/> </module> </module> </module>
Example:
package com.puppycrawl.tools.checkstyle.checks; //No Violation public class AnnotationLocationCheck extends AbstractCheck { //... }
All messages can be customized if the default message doesn't suit you. Please see the documentation to learn how to.
com.puppycrawl.tools.checkstyle.checks.coding