code analysis: ignore module
Brought to you by:
fabioz
there are certain modules I work with that simply cannot be properly analyzed because they are expected to be imported within an applicaiton-modifed version of python which cannot be setup as an interpreter for pydev.
in some cases, the module cannot be found at all - this is fixed with @UnresolvedImport
in other cases, it can be found but not analyzed properly. all further references to attributes of this module cause errors, and the @UnresolvedImport directive does not work to silence these. for this it would be good to have an @IgnoreModule directive that ignores attribute access on this module.
-chad
the documentation does not seem to contain a list of pydev-recognized comments, other than @dynamicAttrs
+1 for this request