forked from DonJayamanne/pythonVSCode
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Closed
Labels
area-intellisenseLSP-related functionality: auto-complete, docstrings, navigation, refactoring, etc.LSP-related functionality: auto-complete, docstrings, navigation, refactoring, etc.feature-requestRequest for new features or functionalityRequest for new features or functionality
Description
I'm very enjoy the support of PEP484, and also the support of sphinx style.
But I'm using google's style of docstring which looks like this
def func(a,b):
"""
Args:
a (int): The first parameter.
b (int): The second parameter.
Returns:
int : return a+b
"""
return a+b
It seems like vscode can not read param's type from this docstring and give me correct suggestion just like in pycharm. And since vscode-python support sphinx style, it is possible to support google style. It would be very helpful since google style is more popular.
Metadata
Metadata
Assignees
Labels
area-intellisenseLSP-related functionality: auto-complete, docstrings, navigation, refactoring, etc.LSP-related functionality: auto-complete, docstrings, navigation, refactoring, etc.feature-requestRequest for new features or functionalityRequest for new features or functionality