chore(build): ignore [info] analyzer warnings

This commit is contained in:
Yegor Jbanov 2015-02-05 15:22:06 -08:00
parent d144e9a345
commit bfdcb6c77c
1 changed files with 4 additions and 0 deletions

View File

@ -56,6 +56,10 @@ module.exports = function(gulp, plugins, config) {
if (line.match(/Unused import/)) { if (line.match(/Unused import/)) {
return; return;
} }
if (line.match(/\[info\]/)) {
// Ignore [info] warnings
return;
}
if (line.match(/\[hint\]/)) { if (line.match(/\[hint\]/)) {
hintCount++; hintCount++;
} else { } else {