Bug 1270596 - Upgrade to ESLint 2.9.0. r=ahal

MozReview-Commit-ID: IylFUWf1HVG
This commit is contained in:
J. Ryan Stinnett
2016-05-05 13:37:18 -05:00
parent 468c098d3f
commit 9562eb1da5
2 changed files with 3 additions and 3 deletions

View File

@@ -270,11 +270,11 @@ class MachCommands(MachCommandBase):
if not npmPath:
return 1
# Install eslint 1.10.3.
# Install eslint.
# Note that that's the version currently compatible with the mozilla
# eslint plugin.
success = self.callProcess("eslint",
[npmPath, "install", "eslint@2.8.0", "-g"])
[npmPath, "install", "eslint@2.9.0", "-g"])
if not success:
return 1