Skip to content

Commit

Permalink
Lint: do not ignore external/importL10n as it is one of our components
Browse files Browse the repository at this point in the history
  • Loading branch information
timvandermeij committed Nov 1, 2016
1 parent c719762 commit 978b214
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .jshintignore
Expand Up @@ -6,7 +6,6 @@ examples/
external/bcmaps/
external/webL10n/
external/cmapscompress/
external/importL10n/
external/builder/fixtures_esprima/
test/tmp/
test/features/
Expand Down
4 changes: 2 additions & 2 deletions external/importL10n/locales.js
Expand Up @@ -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() {
Expand All @@ -75,7 +75,7 @@ function downloadLanguageFiles(root, langCode, callback) {
if (downloadsLeft === 0) {
callback();
}
})
});
});
});
}
Expand Down

0 comments on commit 978b214

Please sign in to comment.