mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-19 14:48:08 +02:00
Lint: do not ignore external/importL10n
as it is one of our components
This commit is contained in:
parent
c719762099
commit
978b214c92
2 changed files with 2 additions and 3 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue