Lint: do not ignore external/importL10n as it is one of our components

This commit is contained in:
Tim van der Meij 2016-11-01 14:43:38 +01:00
parent c719762099
commit 978b214c92
2 changed files with 2 additions and 3 deletions

View File

@ -6,7 +6,6 @@ examples/
external/bcmaps/
external/webL10n/
external/cmapscompress/
external/importL10n/
external/builder/fixtures_esprima/
test/tmp/
test/features/

View File

@ -66,7 +66,7 @@ function downloadLanguageFiles(root, langCode, callback) {
var request = https.get(url, function(response) {
var content = '';
response.setEncoding('utf8');
response.on("data", function(chunk) {
response.on('data', function(chunk) {
content += chunk;
});
response.on('end', function() {
@ -75,7 +75,7 @@ function downloadLanguageFiles(root, langCode, callback) {
if (downloadsLeft === 0) {
callback();
}
})
});
});
});
}