From e9f131a67856d15f12f76621be885858fd70e016 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cosmin=20=C8=98tefan=20Ciocan?= <57830279+cosminc98@users.noreply.github.com> Date: Sat, 27 Jan 2024 00:41:39 +0000 Subject: [PATCH] Add autodocstring vscode extension to devcontainer --- .devcontainer/devcontainer.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index c6e997c..ad02373 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -16,10 +16,12 @@ "ms-python.isort", "ms-python.flake8", "ms-python.black-formatter", - "ryanluker.vscode-coverage-gutters" + "ryanluker.vscode-coverage-gutters", + "njpwerner.autodocstring" ], "settings": { - "python.defaultInterpreterPath": "/opt/dev-venv/bin/python" + "python.defaultInterpreterPath": "/opt/dev-venv/bin/python", + "autoDocstring.docstringFormat": "google-notypes" } } }