summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Greiling <mike@pixelcog.com>2016-11-22 15:47:11 -0600
committerMike Greiling <mike@pixelcog.com>2016-11-30 17:15:25 -0600
commitd23a888ba3cc31a1f6f69d70a090acd3625b186b (patch)
treec543db534d83e100b082c86deaa128396e7d26e9
parente0e5ea0e19d2527c9787eb7c23001fca8e7f58a8 (diff)
downloadgitlab-ce-d23a888ba3cc31a1f6f69d70a090acd3625b186b.tar.gz
move eslint rules to top of script
-rw-r--r--app/assets/javascripts/subscription.js.es62
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/subscription.js.es6 b/app/assets/javascripts/subscription.js.es6
index 58b380e0f2e..f043e3e6850 100644
--- a/app/assets/javascripts/subscription.js.es6
+++ b/app/assets/javascripts/subscription.js.es6
@@ -1,3 +1,4 @@
+/* eslint-disable no-param-reassign */
/* global Vue */
((global) => {
@@ -53,6 +54,5 @@
}
}
- // eslint-disable-next-line no-param-reassign
global.Subscription = Subscription;
})(window.gl || (window.gl = {}));