PyCharm type hint is great. We widely use it in our projects. But from time to time, the type names in the docstrings methods are received with errors, and some errors that PyCharm warned about development time were missed.
Is it possible to get PyCharm to warn me about an incorrect reference to the parameter type in docstring? For example, if I make a typo like :type num: lomg
instead of :type num: long
, I want lomg
be highlighted as a warning.
source share