I don't want "print" statements in our Python modules, because we will be using a logger.
I'm trying to generate a script to check modules with pylint. However, pylint currently does not detect this as a warning or error.
I want to detect "print" invocations as an error or a warning in accordance with our internal Python programming standard.
How can I achieve this?