aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorJean-Baptiste Lievremont <jean-baptiste.lievremont@sonarsource.com>2013-10-11 11:32:58 +0200
committerJean-Baptiste Lievremont <jean-baptiste.lievremont@sonarsource.com>2013-10-11 11:46:54 +0200
commitbfa87bd519aa426a96a97dabd2db86adae974dd0 (patch)
treeebb867a53e6b31f95b803810c2d8a867dc8fe6be /plugins
parent165d0f89188a3de20dac61f3395b039550c8a243 (diff)
downloadsonarqube-bfa87bd519aa426a96a97dabd2db86adae974dd0.tar.gz
sonarqube-bfa87bd519aa426a96a97dabd2db86adae974dd0.zip
SONAR-3644 SONAR-4679 Match property names and description with documentation on wiki page
Diffstat (limited to 'plugins')
-rw-r--r--plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/issue/ignore/IgnoreIssuesConfiguration.java24
1 files changed, 12 insertions, 12 deletions
diff --git a/plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/issue/ignore/IgnoreIssuesConfiguration.java b/plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/issue/ignore/IgnoreIssuesConfiguration.java
index a35ad0e80ca..5efe3b462a5 100644
--- a/plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/issue/ignore/IgnoreIssuesConfiguration.java
+++ b/plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/issue/ignore/IgnoreIssuesConfiguration.java
@@ -65,20 +65,20 @@ public final class IgnoreIssuesConfiguration {
PropertyDefinition.builder(PATTERNS_MULTICRITERIA_EXCLUSION_KEY)
.category(CoreProperties.CATEGORY_EXCLUSIONS)
.subCategory(SUB_CATEGORY_IGNORE_ISSUES)
- .name("Multi-criteria Exclusion Patterns")
- .description("Patterns used to identify which issues are ignored.")
+ .name("Ignore Issues on Multiple Criteria")
+ .description("Patterns to ignore issues on certain components and for certain coding rules.")
.onQualifiers(Qualifiers.PROJECT)
.index(3)
.fields(
PropertyFieldDefinition.build(RULE_KEY)
.name(PROPERTY_RULE_KEY_PATTERN)
- .description("Pattern used to match rules which should be ignored.")
+ .description("Pattern to match rules which should be ignored.")
.type(PropertyType.STRING)
.indicativeSize(LARGE_SIZE)
.build(),
PropertyFieldDefinition.build(RESOURCE_KEY)
.name(PROPERTY_FILE_PATH_PATTERN)
- .description("Pattern used to match files which should be ignored.")
+ .description("Pattern to match files which should be ignored.")
.type(PropertyType.STRING)
.indicativeSize(LARGE_SIZE)
.build())
@@ -86,8 +86,8 @@ public final class IgnoreIssuesConfiguration {
PropertyDefinition.builder(PATTERNS_BLOCK_KEY)
.category(CoreProperties.CATEGORY_EXCLUSIONS)
.subCategory(SUB_CATEGORY_IGNORE_ISSUES)
- .name("Block Exclusion Patterns")
- .description("Patterns used to identify blocks in which issues are ignored.")
+ .name("Ignore Issues in Blocks")
+ .description("Patterns to ignore all issues on specific blocks of code, while continuing to scan and mark issues on the remainder of the file.")
.onQualifiers(Qualifiers.PROJECT)
.index(2)
.fields(
@@ -107,8 +107,8 @@ public final class IgnoreIssuesConfiguration {
PropertyDefinition.builder(PATTERNS_ALLFILE_KEY)
.category(CoreProperties.CATEGORY_EXCLUSIONS)
.subCategory(SUB_CATEGORY_IGNORE_ISSUES)
- .name("File Exclusion Patterns")
- .description("Patterns used to identify files in which issues are ignored.")
+ .name("Ignore Issues on Files")
+ .description("Patterns to ignore all issues on files that contain a block of code matching a given regular expression.")
.onQualifiers(Qualifiers.PROJECT)
.index(1)
.fields(
@@ -122,20 +122,20 @@ public final class IgnoreIssuesConfiguration {
PropertyDefinition.builder(PATTERNS_MULTICRITERIA_INCLUSION_KEY)
.category(CoreProperties.CATEGORY_EXCLUSIONS)
.subCategory(SUB_CATEGORY_IGNORE_ISSUES)
- .name("Multi-criteria Inclusion Patterns")
- .description("Patterns used to identify which issues should be enforced on selected resources.")
+ .name("Restrict Scope of Coding Rules")
+ .description("Patterns to restrict the application of a rule to only certain components, ignoring all others.")
.onQualifiers(Qualifiers.PROJECT)
.index(4)
.fields(
PropertyFieldDefinition.build(RULE_KEY)
.name(PROPERTY_RULE_KEY_PATTERN)
- .description("Pattern used to match rules which should be enforced.")
+ .description("Pattern used to match rules which should be restricted.")
.type(PropertyType.STRING)
.indicativeSize(LARGE_SIZE)
.build(),
PropertyFieldDefinition.build(RESOURCE_KEY)
.name(PROPERTY_FILE_PATH_PATTERN)
- .description("Pattern used to match files on which issues should be enforced.")
+ .description("Pattern used to match files to which the rules should be restricted.")
.type(PropertyType.STRING)
.indicativeSize(LARGE_SIZE)
.build())