gpt4 book ai didi

checkstyle - filetabcharacter 检查不适用于 checkstyle

转载 作者:行者123 更新时间:2023-12-03 15:02:18 27 4
gpt4 key购买 nike

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>

最佳答案

我也遇到了这个问题;问题原来是默认配置只在源代码目录中查找,而不是在顶级目录中。我用下面的配置解决了这个问题,将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/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com