Skip to content

Commit 48ec1ab

Browse files
authored
Merge pull request SonarOpenCommunity#1022 from guwirth/error-recovery-txt
update sonar.cxx.errorRecoveryEnabled description
2 parents 63b7186 + 9314c79 commit 48ec1ab

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

sonar-cxx-plugin/src/main/java/org/sonar/plugins/cxx/CxxPlugin.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,8 @@ private static List<PropertyDefinition> generalProperties() {
125125
PropertyDefinition.builder(CxxPlugin.ERROR_RECOVERY_KEY)
126126
.defaultValue("True")
127127
.name("Parse error recovery")
128-
.description("Enables/disables the parse error recovery (experimental).")
128+
.description("Defines mode for error handling of report files and parsing errors. `False' (strict) breaks after an error or 'True' (tolerant) continues."
129+
+ " See <a href='https://github.com/SonarOpenCommunity/sonar-cxx/wiki/Supported-configuration-properties#sonarcxxerrorrecoveryenabled'>sonar.cxx.errorRecoveryEnabled</a> for a complete description.")
129130
.subCategory(subcateg)
130131
.onQualifiers(Qualifiers.PROJECT, Qualifiers.MODULE)
131132
.type(PropertyType.BOOLEAN)

0 commit comments

Comments
 (0)