At the moment numpydoc will ignore "Attributes" section for dataclasses (or maybe I don't quite understand how to document dataclasses properly): ```python @dataclass class Klass: """ Klass description. Attributes ---------- attr: int Some attribute description. """ attr: int ``` It would be great to have such a feature.