Bug 1405279 - Lint for unused variables. r?whimboo draft
authorAndreas Tolfsen <ato@sny.no>
Tue, 03 Oct 2017 14:36:09 +0100
changeset 675012 2a8df8abf94903224b030fd7516b0774d21ed741
parent 675011 e57abf9e7df0b9ac931a8b5e119b1468594e5a42
child 734493 7bc803bc36e1c847cba62a489c5feff225ac1d86
push id83012
push userbmo:ato@sny.no
push dateWed, 04 Oct 2017 18:38:20 +0000
reviewerswhimboo
bugs1405279
milestone58.0a1
Bug 1405279 - Lint for unused variables. r?whimboo MozReview-Commit-ID: 6hUMzC21Tl
testing/marionette/.eslintrc.js
--- a/testing/marionette/.eslintrc.js
+++ b/testing/marionette/.eslintrc.js
@@ -12,13 +12,14 @@ module.exports = {
     }],
     "max-len": ["error", 78, {
       "ignoreStrings": true,
       "ignoreUrls": true,
     }],
     "no-fallthrough": "error",
     "no-new-object": "error",
     "no-undef-init": "error",
+    "no-unused-vars": ["error", {}],
     "no-var": "error",
     "object-curly-spacing": ["error", "never"],
     "semi": "error",
   }
 };