satisfy eslint no-param-reassign and remove rule exception

This commit is contained in:
Mike Greiling 2016-11-30 17:21:28 -06:00
parent ee99de6e61
commit 31356c203d
1 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,6 @@
/* eslint-disable no-param-reassign */
/* global Vue */
((global) => {
(() => {
class Subscription {
constructor(containerSelector) {
this.containerElm = (typeof containerSelector === 'string')
@ -54,5 +53,6 @@
}
}
global.Subscription = Subscription;
})(window.gl || (window.gl = {}));
window.gl = window.gl || {};
window.gl.Subscription = Subscription;
})();