Ncss 类型计数违规

2022-01-17 00:00:00 sonarqube java

我不太清楚 PMD 提出的这种违规行为.基本上我有两个问题:

  1. 我应该怎么做才能摆脱这种违规行为?

  2. 以下语句是什么意思?

<块引用>

该类型的 NCSS 行数为 944 个参数
最小值:类型 NCSS 计数报告阈值:默认为 1500.

解决方案

PMD 代码大小规则.

NCSS 代表非注释源代码行.具有高 NCSS 计数的方法和/或类(在非常高的级别)太长,并且可能会被拆分.大量的 NCSS 是不好的.

此外,听起来您可能正在使用 Sonar 2.10 或更低版本,如 Sonar Bug 2676 已在 2.11 中修复.

I'm not really clear with this violation raised by PMD. Basically I have 2 questions:

  1. What should I do to get rid of this violation?

  2. What does the following statement mean?

The type has an NCSS line count of 944 Parameters
minimum: The type NCSS count reporting threshold: Default is 1500.

解决方案

PMD Code size rules.

NCSS stands for Non-Commented Source Code lines. Methods and/or classes that have high NCSS counts are (at a very high level) too long, and can probably be split up. High numbers of NCSS are bad.

Additionally, it sounds like you might be using Sonar version 2.10 or prior, as Sonar Bug 2676 was fixed in 2.11.

相关文章