chore(build): ignore [info] analyzer warnings
This commit is contained in:
parent
d144e9a345
commit
bfdcb6c77c
|
@ -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 {
|
||||||
|
|
Loading…
Reference in New Issue