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 4e4f7d3 commit 0f73f85Copy full SHA for 0f73f85
src/lib/msg-filter.cc
@@ -130,6 +130,11 @@ MsgFilter::MsgFilter():
130
d->addMsgFilter("SHELLCHECK_WARNING",
131
" on line [0-9]+\\.$", " on line NNNN.");
132
133
+ // ignore profile count data file not found errors
134
+ d->addMsgFilter("COMPILER_WARNING",
135
+ "‘.*’( profile count data file not found)",
136
+ "...\1");
137
+
138
// pylint reports, either raw, or prospector-wrapped
139
const std::string pylintCheckers = "PROSPECTOR_WARNING|PYLINT_WARNING";
140
0 commit comments