suppress warnings about data-localization keys

This commit is contained in:
ansuz 2021-03-01 10:14:16 +05:30
parent b934820d23
commit 3457ae31cd
1 changed files with 2 additions and 1 deletions

View File

@ -76,7 +76,8 @@ var grep = function (pattern, cb) {
return void cb(err);
}
if (/data\-localization/.test(stdout)) {
return cb(void 0, true, "DATA_LOCALIZATION", stdout);
return cb(void 0, false);
//return cb(void 0, true, "DATA_LOCALIZATION", stdout);
}
if (/(Messages|Msg|messages)\./.test(stdout) || /(footLink|footerCol)/.test(stdout)) {
return cb(void 0, false);