]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-6859 update description of sonar.technicalDebt.ratingGrid
authorSébastien Lesaint <sebastien.lesaint@sonarsource.com>
Fri, 25 Sep 2015 15:36:41 +0000 (17:36 +0200)
committerSébastien Lesaint <sebastien.lesaint@sonarsource.com>
Fri, 25 Sep 2015 15:37:39 +0000 (17:37 +0200)
sonar-core/src/main/java/org/sonar/core/config/DebtProperties.java

index 47f11ff107bca26a99814bf93db936d602c225e9..95008f6d659b1b097009fd1a352bdbe55d37fbcd 100644 (file)
@@ -55,11 +55,11 @@ class DebtProperties {
       PropertyDefinition.builder(CoreProperties.RATING_GRID)
         .defaultValue("" + CoreProperties.RATING_GRID_DEF_VALUES)
         .name("Rating grid")
-        .description("SQALE ratings range from A (very good) to E (very bad). The rating is determined by the value of the Technical Debt Ratio, " +
-          "which compares the technical debt on a project to the cost it would take to rewrite the code from scratch. " +
-          "The default values for A through D are 0.1,0.2,0.5,1. Anything over 1 is an E. " +
-          "Example: assuming the size metric is lines of code (LOC), and the work unit is 30 (minutes to produce 1 LOC), " +
-          "a project with a technical debt of 24,000 minutes for 2,500 LOC will have a technical debt ratio of 24000/(30 * 2,500) = 0.32. That yields a SQALE rating of C.")
+        .description("SQALE ratings range from A (very good) to E (very bad). The rating is determined by the value of " +
+          "the Technical Debt Ratio, which compares the technical debt on a project to the cost it would take to rewrite " +
+          "the code from scratch. The default values for A through D are 0.1,0.2,0.5,1. Anything over 1 is an E. " +
+          "Example: assuming the development cost is 30 minutes, a project with a technical debt of 24,000 minutes for " +
+          "2,500 LOC will have a technical debt ratio of 24000/(30 * 2,500) = 0.32. That yields a SQALE rating of C.")
         .category(CoreProperties.CATEGORY_TECHNICAL_DEBT)
         .deprecatedKey("ratingGrid")
         .build(),