mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-26 17:16:11 -05:00
eslint-disable for console.log's
Should resolve the Travis-CI errors
This commit is contained in:
parent
1a6fa9466f
commit
b4c35122b9
1 changed files with 2 additions and 0 deletions
|
@ -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 */
|
||||
};
|
||||
})();
|
||||
|
|
Loading…
Reference in a new issue