google-readability-todo¶
Finds TODO comments without a username or bug number.
The relevant style guide section is https://google.github.io/styleguide/cppguide.html#TODO_Comments.
Corresponding cpplint.py check: readability/todo
Options¶
- Style¶
A string specifying the TODO style for fix-it hints. Accepted values are
HyphenandParentheses. Default isHyphen.Hyphenwill format the fix-it as:// TODO: username - details.Parentheseswill format the fix-it as:// TODO(username): details.