Bug 1330791 - Enable the no-unsafe-finally rule for eslint in /services. There are no associated errors with this rule. r?markh draft
authorJared Wein <jwein@mozilla.com>
Thu, 12 Jan 2017 18:16:34 -0500
changeset 464213 ba7c9f6d19079b0ccefc7bf0ee7334f7540f0d6a
parent 464212 a89b4139a14e6dc57ce856eec696f82671d86079
child 464214 d41a19e3d0e985fcade5ce7968d524e927a078b8
push id42305
push userjwein@mozilla.com
push dateFri, 20 Jan 2017 17:40:06 +0000
reviewersmarkh
bugs1330791
milestone53.0a1
Bug 1330791 - Enable the no-unsafe-finally rule for eslint in /services. There are no associated errors with this rule. r?markh MozReview-Commit-ID: E057aetXRv
services/.eslintrc.js
--- a/services/.eslintrc.js
+++ b/services/.eslintrc.js
@@ -13,11 +13,10 @@ module.exports = {
     "no-cond-assign": "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",
   }
 };