在Eclipse中,我们添加一个formatting.xml文件来检查Java代码格式。
在Eclipse中转到Window>偏好> Java>代码风格>格式化,我们输入formatting.xml
在formatting.xml文件中,我们有几个Java代码格式化规则:
<profiles version="10">
<profile name="JavaFormatter" version="10">
<setting id="org.eclipse.jdt.core.formatter.align_type_members_on_columns" value="false"/>
<setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression" value="16"/>
<setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant" value="16"/>
<setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_explicit_constructor_call" value="16"/>
<setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_method_invocation" value="16"/>
.
.
.
.
.
有没有办法将这些规则添加到SonarQube 4.1.1? 我已经导入了checkstyle规则,我只需要添加代码格式规则。
答案 0 :(得分:1)
没有。目前还不可能。