diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2017-10-18 12:10:59 +0200 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@sonarsource.com> | 2017-10-20 13:09:23 +0200 |
commit | f3e111f489c0acc81239743ddcb5cef5b1717005 (patch) | |
tree | 356ea703026246874f8d6b459c50a03cf51b0cc3 /sonar-core | |
parent | f3de142860a4ebcc91f9f80771964a105f8ed982 (diff) | |
download | sonarqube-f3e111f489c0acc81239743ddcb5cef5b1717005.tar.gz sonarqube-f3e111f489c0acc81239743ddcb5cef5b1717005.zip |
SONAR-9703 Update "Ignore Issues on Files/Blocks" settings definitions
These settings are not used for issues coming from common repository
Diffstat (limited to 'sonar-core')
-rw-r--r-- | sonar-core/src/main/java/org/sonar/core/config/IssueExclusionProperties.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sonar-core/src/main/java/org/sonar/core/config/IssueExclusionProperties.java b/sonar-core/src/main/java/org/sonar/core/config/IssueExclusionProperties.java index 94994297906..ce719d8556c 100644 --- a/sonar-core/src/main/java/org/sonar/core/config/IssueExclusionProperties.java +++ b/sonar-core/src/main/java/org/sonar/core/config/IssueExclusionProperties.java @@ -88,7 +88,8 @@ public final class IssueExclusionProperties { .category(CoreProperties.CATEGORY_EXCLUSIONS) .subCategory(SUB_CATEGORY_IGNORE_ISSUES) .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.") + .description("Patterns to ignore all issues (except the ones from the common repository) on specific blocks of code, " + + "while continuing to scan and mark issues on the remainder of the file.") .onQualifiers(Qualifiers.PROJECT) .index(2) .fields( @@ -110,7 +111,7 @@ public final class IssueExclusionProperties { .category(CoreProperties.CATEGORY_EXCLUSIONS) .subCategory(SUB_CATEGORY_IGNORE_ISSUES) .name("Ignore Issues on Files") - .description("Patterns to ignore all issues on files that contain a block of code matching a given regular expression.") + .description("Patterns to ignore all issues (except the ones from the common repository) on files that contain a block of code matching a given regular expression.") .onQualifiers(Qualifiers.PROJECT) .index(1) .fields( |