Check for TODO notes.
This module provides a plugin for flake8
, the Python code checker.
You can install or upgrade flake8-todo
with these commands:
$ pip install flake8-todo $ pip install --upgrade flake8-todo
When both flake8 2.0
and flake8-todo
are installed, the plugin is
available in flake8
:
$ flake8 --version 2.0 (pep8: 1.4.5, mccabe: 0.2, flake8-todo: 0.1, pyflakes: 0.6.1)
- Relax dependency pinning
- Fixed entry point for flake8 3.0
- Moved from pep8 to pycodestyle
- Show XXX as TODO entry
- Fixed setup for Python 3.
- Use unique entry point (previous version conflicted with mccabe)
- First release