Bug 1270619 - Remove globals that aren't actually global. r=pbro draft
authorJ. Ryan Stinnett <jryans@gmail.com>
Thu, 05 May 2016 14:37:43 -0500
changeset 364638 d1da3b1a5e620e5711c5da56790846c826b7b432
parent 364598 6eafc23d044673e709bd215c4ab6511f8f552cb0
child 364639 982874a58a010ce5260668d52dc8d373127766a9
push id17512
push userbmo:jryans@gmail.com
push dateSat, 07 May 2016 05:36:45 +0000
reviewerspbro
bugs1270619
milestone49.0a1
Bug 1270619 - Remove globals that aren't actually global. r=pbro MozReview-Commit-ID: HorYPkboF4K
devtools/.eslintrc
--- a/devtools/.eslintrc
+++ b/devtools/.eslintrc
@@ -1,38 +1,28 @@
 {
   "plugins": [
     "react"
   ],
   "globals": {
     "atob": true,
     "btoa": true,
-    "Cc": true,
-    "Ci": true,
     "Components": true,
     "clearInterval": true,
     "clearTimeout": true,
     "console": true,
-    "Cr": true,
-    "Cu": true,
     "devtools": true,
     "dump": true,
-    "EventEmitter": true,
     "exports": true,
     "isWorker": true,
     "loader": true,
     "module": true,
-    "reportError": true,
     "require": true,
     "setInterval": true,
     "setTimeout": true,
-    "Services": true,
-    "Task": true,
-    "XPCNativeWrapper": true,
-    "XPCOMUtils": true,
     "_Iterator": true,
   },
   "rules": {
     // These are the rules that have been configured so far to match the
     // devtools coding style.
 
     // Rules from the mozilla plugin
     "mozilla/mark-test-function-used": 1,