Skip to content

Commit 89c9c6e

Browse files
author
Waleri Enns
committed
Change the configuration defaults for the parse error recovery
1 parent 23da6ee commit 89c9c6e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,12 +109,12 @@ public static List<PropertyDefinition> generalProperties() {
109109
.build(),
110110

111111
PropertyDefinition.builder(CxxPlugin.ERROR_RECOVERY_KEY)
112-
.defaultValue("true")
112+
.defaultValue("False")
113113
.name("Parse error recovery")
114-
.description("Enables/disables the parse error recovery. For development purposes.")
114+
.description("Enables/disables the parse error recovery (experimental).")
115115
.subCategory(subcateg)
116+
.onQualifiers(Qualifiers.PROJECT, Qualifiers.MODULE)
116117
.type(PropertyType.BOOLEAN)
117-
.hidden()
118118
.build()
119119
);
120120
}

0 commit comments

Comments
 (0)