0

PyLint in VS Code is giving me this warning when I add a # TODO comment.

enter image description here

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?

KOB
  • 4,084
  • 9
  • 44
  • 88

1 Answers1

1

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=
KOB
  • 4,084
  • 9
  • 44
  • 88