How do I disable “TODO” warnings in pylint?

in the generated config file, you should see a section [MISCELLANEOUS] # List of note tags to take in consideration, separated by a comma. notes=FIXME,XXX,TODO simply drop TODO from the “notes” list. The config file is found at ~/.pylintrc If you have not generated the config file, this can be done with pylint –generate-rcfile > … Read more

How do I create a pylintrc file

You may put it in: /etc/pylintrc for default global configuration ~/.pylintrc for default user configuration <your project>/pylintrc for default project configuration (used when you’ll run pylint <your project>) wherever you want, then use pylint –rcfile=<wherever I want> Also notice when generating the rc file, you may add option on the command line before the –generate-rcfile, … Read more