How do I disable these error messages from popping up in the problems box in vs code
For the simple test.py, I did not modify setting but only apply to that file I used # pylint: disable=W0614 Put this line on top of the file then pylint automatically recognized it.
This eliminated 100 unused import warnings
You can keep disabling like this
# pylint: disable=missing-module-docstring
# pylint: disable=missing-class-docstring
# pylint: disable=missing-function-docstring
# pylint: disable=wildcard-import
# pylint: disable=W0614