I've tried editing the template in a number of different ways, but cannot for the life of me find a way to add an extra newline at the end of the docstring with this plugin. Pydocstyle (D413) recommends this, and I personally like the way that it looks.
Docstring that I'd like to create:
"""_summary_
Parameters:
----------
a : _type_
_description_
b : _type_
_description_
Returns:
-------
_type_
_description_
"""
Docstring that I can create:
"""_summary_
Parameters
----------
a : _type_
_description_
b : _type_
_description_
Returns
-------
_type_
_description_
"""
Not sure if there's something I'm missing or if it's just not possible.
I've tried editing the template in a number of different ways, but cannot for the life of me find a way to add an extra newline at the end of the docstring with this plugin. Pydocstyle (D413) recommends this, and I personally like the way that it looks.
Docstring that I'd like to create:
Docstring that I can create:
Not sure if there's something I'm missing or if it's just not possible.