I have an eslint rule that will throw an error if there’s a console.log.
I’d like to create a handler called “Console.log” that does the same thing but won’t be picked up by the eslint rule.
Is there a way to make this globally available in a react project without having to import it anywhere?