We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d144e9a commit bfdcb6cCopy full SHA for bfdcb6c
1 file changed
tools/build/dartanalyzer.js
@@ -56,6 +56,10 @@ module.exports = function(gulp, plugins, config) {
56
if (line.match(/Unused import/)) {
57
return;
58
}
59
+ if (line.match(/\[info\]/)) {
60
+ // Ignore [info] warnings
61
+ return;
62
+ }
63
if (line.match(/\[hint\]/)) {
64
hintCount++;
65
} else {
0 commit comments