mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-01 06:11:43 +00:00
14 lines
513 B
Python
14 lines
513 B
Python
# T002 - accepted
|
|
# TODO (evanrittenhouse): this has an author
|
|
# TODO(evanrittenhouse): this has an author
|
|
# TODO (evanrittenhouse) and more: this has an author
|
|
# TODO(evanrittenhouse) and more: this has an author
|
|
# TODO@mayrholu: this has an author
|
|
# TODO @mayrholu: this has an author
|
|
# TODO@mayrholu and more: this has an author
|
|
# TODO @mayrholu and more: this has an author
|
|
# T002 - errors
|
|
# TODO: this has no author
|
|
# FIXME: neither does this
|
|
# TODO : and neither does this
|
|
# foo # TODO: this doesn't either
|