chore: change the built task to ignore "unused import" errors

This commit is contained in:
vsavkin 2014-11-14 13:07:06 -08:00
parent e15bcf0ffd
commit b87891d77c
1 changed files with 1 additions and 1 deletions

View File

@ -214,7 +214,7 @@ gulp.task('analyze/dartanalyzer', function(done) {
});
var hintCount = 0;
rl.on('line', function(line) {
if (line.match(/Unused import .*_analyzer\.dart/)) {
if (line.match(/Unused import/)) {
return;
}
if (line.match(/\[hint\]/)) {