mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-01 06:11:43 +00:00
10 lines
402 B
Python
10 lines
402 B
Python
# T007 - accepted
|
|
# TODO(evanrittenhouse): this has a space after a colon
|
|
# TODO: so does this
|
|
# T007 - errors
|
|
# TODO(evanrittenhouse):this has no space after a colon
|
|
# TODO (evanrittenhouse):this doesn't either
|
|
# TODO:neither does this
|
|
# FIXME:and lastly neither does this
|
|
# foo # TODO:this is really the last one
|
|
# TODO this colon doesn't terminate the tag, so don't check it. https://www.google.com
|