diff options
author | Mike Greiling <mike@pixelcog.com> | 2016-12-13 23:26:26 -0600 |
---|---|---|
committer | Mike Greiling <mike@pixelcog.com> | 2016-12-14 02:11:13 -0600 |
commit | 8e0e902b133f33b38ffaa743ac3f3297b4bceb2d (patch) | |
tree | 6f35057e1dcf2de5c959d7007986b72c23dfb948 /app/assets/javascripts/application.js | |
parent | 23f5865e184c1738df86893d31392faf4bc2bad7 (diff) | |
download | gitlab-ce-8e0e902b133f33b38ffaa743ac3f3297b4bceb2d.tar.gz |
resolve all instances of no-undef eslint rule violationsclean-no-undef
Diffstat (limited to 'app/assets/javascripts/application.js')
-rw-r--r-- | app/assets/javascripts/application.js | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/app/assets/javascripts/application.js b/app/assets/javascripts/application.js index b7c4673c8e3..043c6a11c4f 100644 --- a/app/assets/javascripts/application.js +++ b/app/assets/javascripts/application.js @@ -1,4 +1,11 @@ -/* eslint-disable func-names, space-before-function-paren, no-var, no-undef, quotes, consistent-return, prefer-arrow-callback, comma-dangle, object-shorthand, no-new, max-len */ +/* eslint-disable func-names, space-before-function-paren, no-var, quotes, consistent-return, prefer-arrow-callback, comma-dangle, object-shorthand, no-new, max-len */ +/* global bp */ +/* global Cookies */ +/* global Flash */ +/* global ConfirmDangerModal */ +/* global AwardsHandler */ +/* global Aside */ + // This is a manifest file that'll be compiled into including all the files listed below. // Add new JavaScript code in separate files in this directory and they'll automatically // be included in the compiled file accessible from http://example.com/assets/application.js |