eslint-disable for console.log's

Should resolve the Travis-CI errors
This commit is contained in:
Joel Gritter 2018-06-29 09:57:46 -04:00 committed by GitHub
parent 1a6fa9466f
commit b4c35122b9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -44,6 +44,7 @@ const Raven = require('raven-js');
*/
(() => {
window.onload = function () {
/* eslint-disable no-console */
console.log('%cStop!', 'color: #F00; font-size: 30px; -webkit-text-stroke: 1px black; font-weight:bold');
console.log(
'This is part of your browser intended for developers. ' +
@ -54,5 +55,6 @@ const Raven = require('raven-js');
'you are doing here, you should close this window without doing ' +
'anything.'
);
/* eslint-enable no-console */
};
})();