PyLint in VS Code is giving me this warning when I add a # TODO
comment.
I can't find the warning in PyLint's list of messages/codes, so I cannot get it's code to force PyLint to ignore it. How can I find the code?
PyLint in VS Code is giving me this warning when I add a # TODO
comment.
I can't find the warning in PyLint's list of messages/codes, so I cannot get it's code to force PyLint to ignore it. How can I find the code?
I solved this by generating the PyLint config file:
pylint --generate-rcfile > ~/.pylintrc
and then changed this line
notes=FIXME,XXX,TODO
in it to
notes=