We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a3d256 commit ca4f686Copy full SHA for ca4f686
src/com/github/johnthagen/cppcheck/CppCheckInspectionImpl.java
@@ -106,8 +106,8 @@ public static List<ProblemDescriptor> parseOutput(@NotNull final PsiFile psiFile
106
continue;
107
}
108
109
- // suppress this warnings for now - will be properly handled in an upcoming patch
110
- if (id.equals("noValidConfiguration") || id.equals("missingInclude")) {
+ // only show these global warnings in verbose mode
+ if (!VERBOSE_LOG && (id.equals("noValidConfiguration") || id.equals("missingInclude") || id.equals("toomanyconfigs"))) {
111
112
113
0 commit comments