Question

Is there a way to tell pylint that it must show warning message when it see user-defined deprecation warning?

I've tried warnings.warn, DeprecationWarning - but pylint ignores them.

Was it helpful?

Solution

Since warnings.warn &c are intended to happen at runtime, Pylint by default doesn't see them as anything strange. To change that I think you need to follow the (advanced and scarce) docs for writing your own checker, with which you can emit warnings on any characteristics of the sources (either the raw ones or the AST-compiled level thereof).

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top