Bug 1330791 - Enable the no-empty rule for eslint. There were no associated errors with this rule. r?markh draft
authorJared Wein <jwein@mozilla.com>
Thu, 12 Jan 2017 18:09:24 -0500
changeset 464211 3785543ceb3630d38ed473803451d3507744a64e
parent 464210 237478eecc24e38c3c6954b6de8d6ab46a08847b
child 464212 a89b4139a14e6dc57ce856eec696f82671d86079
push id42305
push userjwein@mozilla.com
push dateFri, 20 Jan 2017 17:40:06 +0000
reviewersmarkh
bugs1330791
milestone53.0a1
Bug 1330791 - Enable the no-empty rule for eslint. There were no associated errors with this rule. r?markh MozReview-Commit-ID: JlhO0F45cYL
services/.eslintrc.js
--- a/services/.eslintrc.js
+++ b/services/.eslintrc.js
@@ -7,17 +7,16 @@ module.exports = {
   rules: {
     /* These rules are only set to warn temporarily
        until they get fixed, at which point their
        respective line in this file should be removed. */
     "brace-style": "warn",
     "consistent-return": "warn",
     "no-cond-assign": "warn",
     "no-else-return": "warn",
-    "no-empty": "warn",
     "no-ex-assign": "warn",
     "no-func-assign": "warn",
     "no-native-reassign": "warn",
     "no-nested-ternary": "warn",
     "no-octal": "warn",
     "no-redeclare": "warn",
     "no-unreachable": "warn",
     "no-unsafe-finally": "warn",