Skip to content
This repository was archived by the owner on Jan 14, 2022. It is now read-only.

Commit fe7eff1

Browse files
author
estebanlopez
committed
Fixed jslint issues
1 parent fcceda3 commit fe7eff1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/manifestTools/manifestValidator.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,8 @@ function applyValidationRules(w3cManifestInfo, platformModules, platforms) {
120120
return runValidationRules(w3cManifestInfo, rules).then(function (results) {
121121
allResults.push.apply(allResults, results);
122122
});
123-
})
124-
};
123+
});
124+
}
125125

126126
function validatePlatform() {
127127
// run platform-specific validation rules

lib/packageTools.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ function getPackageInformation (packageName) {
6868
var packagePath = path.dirname(require.main.filename);
6969
var modulesPath = path.join(packagePath, node_modules);
7070

71-
try { fs.statSync(modulesPath).isDirectory() }
71+
try { fs.statSync(modulesPath).isDirectory(); }
7272
catch (er) {
7373
modulesPath = path.resolve(packagePath, '..');
7474
}

0 commit comments

Comments
 (0)