diff options
author | Mike Greiling <mike@pixelcog.com> | 2017-01-10 17:54:56 -0500 |
---|---|---|
committer | Mike Greiling <mike@pixelcog.com> | 2017-01-18 17:15:27 -0600 |
commit | e7b5945c591bcd55911f495635f2f852946bd228 (patch) | |
tree | fe9aab0029921dafd1f5a4f136256bae3f702f0f /app/assets/javascripts/profile | |
parent | 9e4d04913ab9267d4a59df4d7feafd97b8117fe7 (diff) | |
download | gitlab-ce-e7b5945c591bcd55911f495635f2f852946bd228.tar.gz |
resolve all semi and no-extra-semi eslint violations
Diffstat (limited to 'app/assets/javascripts/profile')
-rw-r--r-- | app/assets/javascripts/profile/gl_crop.js.es6 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/javascripts/profile/gl_crop.js.es6 b/app/assets/javascripts/profile/gl_crop.js.es6 index 58cd522a1b3..449d747e7fe 100644 --- a/app/assets/javascripts/profile/gl_crop.js.es6 +++ b/app/assets/javascripts/profile/gl_crop.js.es6 @@ -1,4 +1,4 @@ -/* eslint-disable no-useless-escape, max-len, padded-blocks, quotes, no-var, no-underscore-dangle, func-names, space-before-function-paren, no-unused-vars, no-return-assign, object-shorthand, one-var, one-var-declaration-per-line, comma-dangle, consistent-return, class-methods-use-this, new-parens, semi */ +/* eslint-disable no-useless-escape, max-len, padded-blocks, quotes, no-var, no-underscore-dangle, func-names, space-before-function-paren, no-unused-vars, no-return-assign, object-shorthand, one-var, one-var-declaration-per-line, comma-dangle, consistent-return, class-methods-use-this, new-parens */ ((global) => { @@ -169,6 +169,6 @@ return this.each(function() { return $(this).data('glcrop', new GitLabCrop(this, opts)); }); - } + }; })(window.gl || (window.gl = {})); |