Lint: do not ignore external/importL10n
as it is one of our components
This commit is contained in:
parent
c719762099
commit
978b214c92
@ -6,7 +6,6 @@ examples/
|
||||
external/bcmaps/
|
||||
external/webL10n/
|
||||
external/cmapscompress/
|
||||
external/importL10n/
|
||||
external/builder/fixtures_esprima/
|
||||
test/tmp/
|
||||
test/features/
|
||||
|
4
external/importL10n/locales.js
vendored
4
external/importL10n/locales.js
vendored
@ -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();
|
||||
}
|
||||
})
|
||||
});
|
||||
});
|
||||
});
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user