作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
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>
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>
最佳答案
我也遇到了这个问题;问题原来是默认配置只在源代码目录中查找,而不是在顶级目录中。我用下面的配置解决了这个问题,将Java代码限制在源代码目录中,但到处寻找XML文件,目标目录除外。
<configuration>
<sourceDirectories>${project.basedir}</sourceDirectories>
<includes>src/main/**/*.java,**/*.xml</includes>
<excludes>**/target/**</excludes>
</configuration>
关于checkstyle - filetabcharacter 检查不适用于 checkstyle,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14527077/
FileTabCharacter检查似乎对我不起作用。下面是我的配置: .. .. .. .. .. .. 我有 XML 文件 - pom.xml和 checksty
我是一名优秀的程序员,十分优秀!