From 4088bf40255bf9286d6c645a1a0766c4908d6ef1 Mon Sep 17 00:00:00 2001 From: Sean Sube Date: Thu, 5 Jan 2023 13:45:26 -0600 Subject: [PATCH] feat: add vscode workspace with subdir roots --- .vscode/settings.json | 3 +++ onnx-web.code-workspace | 22 ++++++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 .vscode/settings.json create mode 100644 onnx-web.code-workspace diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..4c034d98 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "C_Cpp.default.configurationProvider": "ms-vscode.makefile-tools" +} \ No newline at end of file diff --git a/onnx-web.code-workspace b/onnx-web.code-workspace new file mode 100644 index 00000000..06374374 --- /dev/null +++ b/onnx-web.code-workspace @@ -0,0 +1,22 @@ +{ + "folders": [ + { + "name": "root", + "path": "." + }, + { + "path": "api" + }, + { + "path": "gui" + } + ], + "settings": { + "cSpell.words": [ + "ddim", + "ddpm", + "Onnx", + "pndm" + ] + } +} \ No newline at end of file