支票似乎对FileTabCharacter
我不起作用。下面是我的配置:
<module name="Checker">
..
..
<!-- No TAB characters in the source code -->
<module name="FileTabCharacter">
<property name="eachLine" value="true" />
<property name="fileExtensions" value="java,xml" />
</module>
..
..
<module name="TreeWalker">
..
..
</module>
</module>
我有 XML 文件 -pom.xml
和 checkstyle config xml - 其中包含选项卡,但没有一个被标记为违规。
一些附加信息 - 我的插件配置如下所示:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<configuration>
<configLocation>checkstyle/kepler-checkstyle-config.xml</configLocation>
<suppressionsLocation>${project.parent.basedir}${file.separator}checkstyle/kepler-checkstyle-suppressions.xml</suppressionsLocation>
</configuration>
</plugin>