From 7c45db58384ce59c70f790d1db12db56c79f6c57 Mon Sep 17 00:00:00 2001 From: Reuben Miller Date: Wed, 7 Feb 2024 21:24:41 +0100 Subject: [PATCH] dev: add sensible vscode defaults so that robotframework plugins work correctly --- .gitignore | 1 - .vscode/settings.json | 6 ++++++ 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .vscode/settings.json diff --git a/.gitignore b/.gitignore index 785ea22..943053d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,4 @@ dist/ -.vscode/ .DS_Store *.env diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..457a0fa --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,6 @@ +{ + "python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python3", + "robot.language-server.python": "${workspaceFolder}/.venv/bin/python3", + "robot.python.executable": "${workspaceFolder}/.venv/bin/python3", + "python.envFile": "${workspaceFolder}/.env" +} \ No newline at end of file