diff options
author | G. Ann Campbell <ann.campbell@sonarsource.com> | 2019-02-28 09:42:20 +0100 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2019-02-28 20:20:56 +0100 |
commit | c927c0f08c432b74e667762f678621d11f0e8300 (patch) | |
tree | 40ba72f76bd23a8cf26bfac6ba48e81dc99329f5 /server/sonar-docs/src | |
parent | d614cfe573e24221010feb9b343c0c2d01a2ae99 (diff) | |
download | sonarqube-c927c0f08c432b74e667762f678621d11f0e8300.tar.gz sonarqube-c927c0f08c432b74e667762f678621d11f0e8300.zip |
DOC drop `sonar.cpd.exclusions`
`sonar.cpd.exclusions` can be set through the UI and the patterns are documented there.
Diffstat (limited to 'server/sonar-docs/src')
-rw-r--r-- | server/sonar-docs/src/pages/analysis/analysis-parameters.md | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/server/sonar-docs/src/pages/analysis/analysis-parameters.md b/server/sonar-docs/src/pages/analysis/analysis-parameters.md index 4b0898d5e79..e83066e4988 100644 --- a/server/sonar-docs/src/pages/analysis/analysis-parameters.md +++ b/server/sonar-docs/src/pages/analysis/analysis-parameters.md @@ -77,7 +77,6 @@ Key | Description | Default ### Duplications Key | Description | Default ---|----|--- -`sonar.cpd.exclusions` | Comma-delimited list of file path patterns to be excluded from duplication detection | `sonar.cpd.${language}.minimumtokens` | A piece of code is considered duplicated as soon as there are at least 100 duplicated tokens in a row (overide with `sonar.cpd.${language}.minimumTokens`) spread across at least 10 lines of code (override with `sonar.cpd.${language}.minimumLines`). For Java projects, a piece of code is considered duplicated when there is a series of at least 10 statements in a row, regardless of the number of tokens and lines. This threshold cannot be overridden. | 100 `sonar.cpd.${language}.minimumLines` | (see above) | 10 |