mirror of https://github.com/astral-sh/ruff
32 lines
651 B
Python
32 lines
651 B
Python
# TDO003 - accepted
|
|
# TODO: this comment has a link
|
|
# https://github.com/astral-sh/ruff/issues/3870
|
|
|
|
# TODO: this comment has an issue
|
|
# TDO-3870
|
|
|
|
# TDO003 - errors
|
|
# TODO: this comment has no
|
|
# link after it
|
|
|
|
# TODO: here's a TODO with no link after it
|
|
def foo(x):
|
|
return x
|
|
|
|
# TODO: here's a TODO on the last line with no link
|
|
# Here's more content.
|
|
# TDO-3870
|
|
|
|
# TODO: here's a TODO on the last line with no link
|
|
# Here's more content, with a space.
|
|
|
|
# TDO-3870
|
|
|
|
# TODO: here's a TODO without an issue link
|
|
# TODO: followed by a new TODO with an issue link
|
|
# TDO-3870
|
|
|
|
# foo # TODO: no link!
|
|
|
|
# TODO: here's a TODO on the last line with no link
|