summaryrefslogtreecommitdiffstats
path: root/.devcontainer
diff options
context:
space:
mode:
Diffstat (limited to '.devcontainer')
-rw-r--r--.devcontainer/devcontainer.json12
-rw-r--r--.devcontainer/startup.sh3
2 files changed, 14 insertions, 1 deletions
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
index 0c13d2c..7f8844d 100644
--- a/.devcontainer/devcontainer.json
+++ b/.devcontainer/devcontainer.json
@@ -21,7 +21,17 @@
"ms-python.pylint",
"LittleFoxTeam.vscode-python-test-adapter",
"njqdev.vscode-python-typehint",
- "hbenl.vscode-test-explorer"
+ "hbenl.vscode-test-explorer",
+ "codezombiech.gitignore",
+ "ms-python.isort",
+ "eriklynd.json-tools",
+ "ms-python.vscode-pylance",
+ "tuxtina.json2yaml",
+ "christian-kohler.path-intellisense",
+ "ms-python.vscode-pylance",
+ "njqdev.vscode-python-typehint",
+ "LittleFoxTeam.vscode-python-test-adapter",
+ "donjayamanne.python-environment-manager"
]
}
},
diff --git a/.devcontainer/startup.sh b/.devcontainer/startup.sh
index fb9f6f1..ec424c4 100644
--- a/.devcontainer/startup.sh
+++ b/.devcontainer/startup.sh
@@ -9,5 +9,8 @@ pip install --upgrade pip
echo "Installing ANTA package from git"
pip install -e .
+echo "Installing ANTA CLI package from git"
+pip install -e ".[cli]"
+
echo "Installing development tools"
pip install -e ".[dev]"