Skip to content

Commit bfdcb6c

Browse files
committed
chore(build): ignore [info] analyzer warnings
1 parent d144e9a commit bfdcb6c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tools/build/dartanalyzer.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,10 @@ module.exports = function(gulp, plugins, config) {
5656
if (line.match(/Unused import/)) {
5757
return;
5858
}
59+
if (line.match(/\[info\]/)) {
60+
// Ignore [info] warnings
61+
return;
62+
}
5963
if (line.match(/\[hint\]/)) {
6064
hintCount++;
6165
} else {

0 commit comments

Comments
 (0)