Open jdkandersson opened 1 year ago
PEP257 indicates that public functions/ methods of a class should be documented in the class docstring. Add a check for that similar to attrs:
class FooClass: """... Functions: foo: ... """ def foo(): """..."""
Maybe also support Funcs shorthand?
Funcs
PEP257 indicates that public functions/ methods of a class should be documented in the class docstring. Add a check for that similar to attrs: