This repository was archived by the owner on Nov 3, 2023. It is now read-only.
This repository was archived by the owner on Nov 3, 2023. It is now read-only.
(🎁) Perform checks on strings under variable declarations #630
Open
Description
No linting is performed on doc strings for variables. PyCharm, VSCode and pydoc3 all support this use case. I would expect all of these usages to be linted.
a = 1
"""idgi???""" # no lint errors
b: int
"""idgi???""" # no lint errors
class a:
a = 1
"""idgi???""" # no lint errors
b: int
"""idgi???""" # no lint errors
def __init__(self, value):
self.value = value
"""idgi???""" # no lint errors
self.other: int
"""idgi???""" # no lint errors
Metadata
Metadata
Assignees
Labels
No labels